diff options
| author | Joakim Verona | 2013-09-11 19:42:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-11 19:42:49 +0200 |
| commit | f20bcfe4144569d46d5e25685456af50820719f7 (patch) | |
| tree | 52492bdfecfa664388c50a9ad198511efda45d38 /lisp | |
| parent | 41c0d73a318ece49776f1131a99e71253f953689 (diff) | |
| parent | 5ec0337a36f61c2bd6c7c3ef8102f7deeeafd09a (diff) | |
| download | emacs-f20bcfe4144569d46d5e25685456af50820719f7.tar.gz emacs-f20bcfe4144569d46d5e25685456af50820719f7.zip | |
merge from trunk
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 | ||