diff options
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/filesets.el | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c0c31005681..f7104c21885 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2005-05-30 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * filesets.el (filesets-menu-ensure-use-cached): | ||
| 4 | Prevent warning when emacs-version>= is undefined. | ||
| 5 | |||
| 6 | * printing.el (pr-interactive-n-up): Use string-to-number. | ||
| 7 | |||
| 8 | * emulation/tpu-mapper.el: Use eval-buffer, not eval-current-buffer. | ||
| 9 | |||
| 10 | * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): | ||
| 11 | Warn only when name to be defined is quoted. | ||
| 12 | |||
| 1 | 2005-05-30 Nick Roberts <nickrob@snap.net.nz> | 13 | 2005-05-30 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 14 | ||
| 3 | * progmodes/gdb-ui.el (gdb-toggle-breakpoint): | 15 | * progmodes/gdb-ui.el (gdb-toggle-breakpoint): |
diff --git a/lisp/filesets.el b/lisp/filesets.el index 9d60f20316f..7bbf55d9823 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el | |||
| @@ -132,7 +132,8 @@ Is buffer local variable.") | |||
| 132 | 132 | ||
| 133 | (defvar filesets-menu-ensure-use-cached | 133 | (defvar filesets-menu-ensure-use-cached |
| 134 | (and filesets-running-xemacs | 134 | (and filesets-running-xemacs |
| 135 | (not (emacs-version>= 21 5))) | 135 | (if (fboundp 'emacs-version>=) |
| 136 | (not (emacs-version>= 21 5)))) | ||
| 136 | "Make sure (X)Emacs uses filesets' cache. | 137 | "Make sure (X)Emacs uses filesets' cache. |
| 137 | 138 | ||
| 138 | Well, if you use XEmacs (prior to 21.5?) custom.el is loaded after | 139 | Well, if you use XEmacs (prior to 21.5?) custom.el is loaded after |