diff options
| author | Bill Wohler | 2006-07-03 23:30:27 +0000 |
|---|---|---|
| committer | Bill Wohler | 2006-07-03 23:30:27 +0000 |
| commit | ebb4d60b7c5912bff70353783748a57c49be8d77 (patch) | |
| tree | b5045074df38a26a6d58bbcc66c922f91ff58f94 | |
| parent | b2c09a2ed9c22bb0f5be41758a30f83d7583bad9 (diff) | |
| download | emacs-ebb4d60b7c5912bff70353783748a57c49be8d77.tar.gz emacs-ebb4d60b7c5912bff70353783748a57c49be8d77.zip | |
Require mh-buffers and mh-compat before mh-xemacs now that mh-xemacs
needs functions in mh-compat.
| -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 @@ | |||
| 1 | 2006-07-03 Bill Wohler <wohler@newt.com> | ||
| 2 | |||
| 3 | * mh-e.el: Require mh-buffers and mh-compat before mh-xemacs now | ||
| 4 | that mh-xemacs needs functions in mh-compat. | ||
| 5 | |||
| 1 | 2006-06-29 Bill Wohler <wohler@newt.com> | 6 | 2006-06-29 Bill Wohler <wohler@newt.com> |
| 2 | 7 | ||
| 3 | * mh-search.el (mh-search, mh-index-group-by-folder): Add "the" in | 8 | * 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 @@ | |||
| 96 | 96 | ||
| 97 | (mh-require-cl) | 97 | (mh-require-cl) |
| 98 | 98 | ||
| 99 | (require 'mh-buffers) | ||
| 100 | (require 'mh-compat) | ||
| 101 | |||
| 99 | (eval-and-compile | 102 | (eval-and-compile |
| 100 | (defvar mh-xemacs-flag (featurep 'xemacs) | 103 | (defvar mh-xemacs-flag (featurep 'xemacs) |
| 101 | "Non-nil means the current Emacs is XEmacs.")) | 104 | "Non-nil means the current Emacs is XEmacs.")) |
| @@ -103,9 +106,6 @@ | |||
| 103 | (mh-do-in-xemacs | 106 | (mh-do-in-xemacs |
| 104 | (require 'mh-xemacs)) | 107 | (require 'mh-xemacs)) |
| 105 | 108 | ||
| 106 | (require 'mh-buffers) | ||
| 107 | (require 'mh-compat) | ||
| 108 | |||
| 109 | (mh-font-lock-add-keywords | 109 | (mh-font-lock-add-keywords |
| 110 | 'emacs-lisp-mode | 110 | 'emacs-lisp-mode |
| 111 | (eval-when-compile | 111 | (eval-when-compile |