diff options
Diffstat (limited to 'lisp')
| -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 | ||