diff options
| author | Glenn Morris | 2013-09-11 13:27:22 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-09-11 13:27:22 -0400 |
| commit | 5c91a2b88d1efef802d6b76910ead67ff8048289 (patch) | |
| tree | 25a0bf8e63afe136323630dfc5c17c2dfec8429f | |
| parent | 8d2db8be5bccf0d772e0690e612a1f499be4cb48 (diff) | |
| download | emacs-5c91a2b88d1efef802d6b76910ead67ff8048289.tar.gz emacs-5c91a2b88d1efef802d6b76910ead67ff8048289.zip | |
* lisp/savehist.el: No need for cl when compiling on Emacs.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/savehist.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7a79110f4a0..c7e08e40480 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-09-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * savehist.el: No need for cl when compiling on Emacs. | ||
| 4 | |||
| 1 | 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-09-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization | 7 | * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization |
diff --git a/lisp/savehist.el b/lisp/savehist.el index 374e57feb1f..379818b2707 100644 --- a/lisp/savehist.el +++ b/lisp/savehist.el | |||
| @@ -49,7 +49,7 @@ | |||
| 49 | 49 | ||
| 50 | (require 'custom) | 50 | (require 'custom) |
| 51 | (eval-when-compile | 51 | (eval-when-compile |
| 52 | (require 'cl)) | 52 | (if (featurep 'xemacs) (require 'cl))) |
| 53 | 53 | ||
| 54 | ;; User variables | 54 | ;; User variables |
| 55 | 55 | ||