diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-01 22:04:57 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-01 22:04:57 +0000 |
commit | 29c7eba8a113cffc54f3a52476194e383326d9a4 (patch) | |
tree | 44031906a214fd82884d894b4eccf81187f267d8 | |
parent | c3335b6a010addd97464e0244fa16d4c1ebfb9d0 (diff) | |
download | emacs-29c7eba8a113cffc54f3a52476194e383326d9a4.tar.gz |
(top-level): Always require url-parse, not just when compiling.
-rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/url/url-handlers.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 30ac5587d2f..f608f54b0e0 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2007-12-01 Glenn Morris <rgm@gnu.org> + + * url-handlers.el (top-level): Always require url-parse, not just + when compiling. + 2007-11-30 Glenn Morris <rgm@gnu.org> * url-cookie.el (url-cookie-p): Declare as a function. diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index d6776c238e0..6db80407aa6 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el @@ -27,7 +27,7 @@ ;;; Code: ;; (require 'url) -(eval-when-compile (require 'url-parse)) +(require 'url-parse) ;; (require 'url-util) (eval-when-compile (require 'mm-decode)) ;; (require 'mailcap) |