diff options
| author | Miles Bader | 2010-12-16 13:14:48 +0900 |
|---|---|---|
| committer | Miles Bader | 2010-12-16 13:14:48 +0900 |
| commit | 3cbc281e31f901113d2f0f57c6d01828025f2e38 (patch) | |
| tree | ac666e30b82445ea8d6cda8d1b9690ce80cc2311 | |
| parent | 33088bedf34fbedb34461fc52c7442a84da12ddc (diff) | |
| download | emacs-3cbc281e31f901113d2f0f57c6d01828025f2e38.tar.gz emacs-3cbc281e31f901113d2f0f57c6d01828025f2e38.zip | |
url-cookie.el: Require 'cl when compiling
| -rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/url/url-cookie.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 619375b0249..45b023ffb60 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-12-16 Miles Bader <Miles Bader <miles@gnu.org>> | ||
| 2 | |||
| 3 | * url-cookie.el: Require 'cl when compiling -- it's necessary for | ||
| 4 | defstruct. | ||
| 5 | |||
| 1 | 2010-12-14 Glenn Morris <rgm@gnu.org> | 6 | 2010-12-14 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * url-cookie.el: Don't require cl when compiling. | 8 | * url-cookie.el: Don't require cl when compiling. |
diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el index 78dccac19c2..37fd6005995 100644 --- a/lisp/url/url-cookie.el +++ b/lisp/url/url-cookie.el | |||
| @@ -27,6 +27,8 @@ | |||
| 27 | (require 'url-util) | 27 | (require 'url-util) |
| 28 | (require 'url-parse) | 28 | (require 'url-parse) |
| 29 | 29 | ||
| 30 | (eval-when-compile (require 'cl)) ; defstruct | ||
| 31 | |||
| 30 | (defgroup url-cookie nil | 32 | (defgroup url-cookie nil |
| 31 | "URL cookies." | 33 | "URL cookies." |
| 32 | :prefix "url-" | 34 | :prefix "url-" |