diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-10-09 15:27:49 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-10-09 15:27:49 +0000 |
commit | 9271083a41d32322ac271f594ea5e0e86dbe3fab (patch) | |
tree | 7a8ad5a2595f1e9cdd9bf2898c0b5e46faf414d5 | |
parent | 5a1539f38564e842af589e46206e1d95407be795 (diff) | |
download | emacs-9271083a41d32322ac271f594ea5e0e86dbe3fab.tar.gz |
Require easymenu.
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/follow.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cfd5637e5c6..0161024abb5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,7 @@ 2007-10-09 Juanma Barranquero <lekktu@gmail.com> - * follow.el (follow-mode-hook, follow-mode): Doc fixes. + * follow.el: Require easymenu. + (follow-mode-hook, follow-mode): Doc fixes. (follow-mode-off-hook): Mark as obsolete. 2007-10-08 Martin Rudalics <rudalics@gmx.at> diff --git a/lisp/follow.el b/lisp/follow.el index 623989683fe..e6538e5a350 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -254,6 +254,8 @@ ;; Should someone come up with a better solution, please let me ;; know. +(require 'easymenu) + (eval-when-compile (if (or (featurep 'bytecomp) (featurep 'byte-compile)) |