diff options
-rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/url/url-expand.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 3a70b5343a0..784e8d5c320 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2008-02-04 Magnus Henoch <mange@freemail.hu> + + * url-expand.el: Require cl when compiling, for setf. + 2008-01-29 John Wiegley <johnw@newartisans.com> * url-auth.el (url-digest-auth): If the 'opaque' argument is not diff --git a/lisp/url/url-expand.el b/lisp/url/url-expand.el index 545388ffa83..0721a5961c8 100644 --- a/lisp/url/url-expand.el +++ b/lisp/url/url-expand.el @@ -26,6 +26,7 @@ (require 'url-methods) (require 'url-util) (require 'url-parse) +(eval-when-compile (require 'cl)) (defun url-expander-remove-relative-links (name) ;; Strip . and .. from pathnames |