diff options
author | Miles Bader <miles@gnu.org> | 2007-10-27 09:12:07 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-10-27 09:12:07 +0000 |
commit | 18cd1f1a08833b0baad21c1d7b13a6845d95cf57 (patch) | |
tree | 03f33df7513d15bd5de0348aec35ef82bd061508 /lisp/textmodes/reftex.el | |
parent | 74863e7a78b1c8da1094a8250660a009c3b23015 (diff) | |
parent | fdc9061358d3654e14bfc1419632e1d6c6c5c13e (diff) | |
download | emacs-18cd1f1a08833b0baad21c1d7b13a6845d95cf57.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 902-908)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 131-137)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 261-262)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278
Diffstat (limited to 'lisp/textmodes/reftex.el')
-rw-r--r-- | lisp/textmodes/reftex.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 519faded548..0c1beb17763 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -281,6 +281,8 @@ ;; Stuff that needs to be there when we use defcustom (require 'custom) +(require 'easymenu) + (defvar reftex-tables-dirty t "Flag showing if tables need to be re-computed.") @@ -2425,8 +2427,6 @@ IGNORE-WORDS List of words which should be removed from the string." (defvar reftex-isearch-minor-mode nil) (make-variable-buffer-local 'reftex-isearch-minor-mode) -(require 'easymenu) - (easy-menu-define reftex-mode-menu reftex-mode-map "Menu used in RefTeX mode" `("Ref" @@ -2583,7 +2583,7 @@ IGNORE-WORDS List of words which should be removed from the string." "Read documentation for RefTeX in the info system. With optional NODE, go directly to that node." (interactive) - (require 'info) + (eval-and-compile (require 'info)) (Info-goto-node (format "(reftex)%s" (or node "")))) ;;; Install the kill-buffer and kill-emacs hooks ------------------------------ |