diff options
author | Bill Wohler <wohler@newt.com> | 2006-07-03 23:30:27 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2006-07-03 23:30:27 +0000 |
commit | ebb4d60b7c5912bff70353783748a57c49be8d77 (patch) | |
tree | b5045074df38a26a6d58bbcc66c922f91ff58f94 /lisp/mh-e | |
parent | b2c09a2ed9c22bb0f5be41758a30f83d7583bad9 (diff) | |
download | emacs-ebb4d60b7c5912bff70353783748a57c49be8d77.tar.gz |
Require mh-buffers and mh-compat before mh-xemacs now that mh-xemacs
needs functions in mh-compat.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/mh-e/mh-e.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 2f3f29596d0..0f20ab99141 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,8 @@ +2006-07-03 Bill Wohler <wohler@newt.com> + + * mh-e.el: Require mh-buffers and mh-compat before mh-xemacs now + that mh-xemacs needs functions in mh-compat. + 2006-06-29 Bill Wohler <wohler@newt.com> * mh-search.el (mh-search, mh-index-group-by-folder): Add "the" in diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 80f0fedeb6e..5c1e18355eb 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -96,6 +96,9 @@ (mh-require-cl) +(require 'mh-buffers) +(require 'mh-compat) + (eval-and-compile (defvar mh-xemacs-flag (featurep 'xemacs) "Non-nil means the current Emacs is XEmacs.")) @@ -103,9 +106,6 @@ (mh-do-in-xemacs (require 'mh-xemacs)) -(require 'mh-buffers) -(require 'mh-compat) - (mh-font-lock-add-keywords 'emacs-lisp-mode (eval-when-compile |