diff options
| -rw-r--r-- | lisp/mh-e/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/mh-e/mh-funcs.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-mime.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-seq.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-show.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-utils.el | 2 |
6 files changed, 16 insertions, 5 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 8bd41929cd3..574c161e2ef 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2006-04-14 Bill Wohler <wohler@newt.com> | 1 | 2006-04-14 Bill Wohler <wohler@newt.com> |
| 2 | 2 | ||
| 3 | * mh-funcs.el (view-exit-action): No need to wrap defvar with | ||
| 4 | eval-when-compile when shushing compiler. | ||
| 5 | |||
| 6 | * mh-mime.el (mh-identity-pgg-default-user-id): Ditto. | ||
| 7 | |||
| 8 | * mh-seq.el (view-exit-action): Ditto. | ||
| 9 | |||
| 10 | * mh-show.el (font-lock-auto-fontify): Ditto. | ||
| 11 | |||
| 12 | * mh-utils.el (mh-speed-flists-cache): Ditto | ||
| 13 | |||
| 3 | * mh-compat.el (mh-font-lock-add-keywords): New alias for | 14 | * mh-compat.el (mh-font-lock-add-keywords): New alias for |
| 4 | font-lock-add-keywords. Returns nil on XEmacs. | 15 | font-lock-add-keywords. Returns nil on XEmacs. |
| 5 | 16 | ||
diff --git a/lisp/mh-e/mh-funcs.el b/lisp/mh-e/mh-funcs.el index 84b04d51c35..e97533e5724 100644 --- a/lisp/mh-e/mh-funcs.el +++ b/lisp/mh-e/mh-funcs.el | |||
| @@ -138,7 +138,7 @@ Display the results only if something went wrong." | |||
| 138 | (display-buffer mh-temp-buffer))) | 138 | (display-buffer mh-temp-buffer))) |
| 139 | 139 | ||
| 140 | ;; Shush compiler. | 140 | ;; Shush compiler. |
| 141 | (eval-when-compile (defvar view-exit-action)) | 141 | (defvar view-exit-action) |
| 142 | 142 | ||
| 143 | ;;;###mh-autoload | 143 | ;;;###mh-autoload |
| 144 | (defun mh-list-folders () | 144 | (defun mh-list-folders () |
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index d35e759bcd4..f7a3494a1b7 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el | |||
| @@ -1537,7 +1537,7 @@ a prefix argument NOCONFIRM." | |||
| 1537 | (after-find-file nil))) | 1537 | (after-find-file nil))) |
| 1538 | 1538 | ||
| 1539 | ;; Shush compiler. | 1539 | ;; Shush compiler. |
| 1540 | (eval-when-compile (defvar mh-identity-pgg-default-user-id)) | 1540 | (defvar mh-identity-pgg-default-user-id) |
| 1541 | 1541 | ||
| 1542 | ;;;###mh-autoload | 1542 | ;;;###mh-autoload |
| 1543 | (defun mh-mml-secure-message-encrypt (method) | 1543 | (defun mh-mml-secure-message-encrypt (method) |
diff --git a/lisp/mh-e/mh-seq.el b/lisp/mh-e/mh-seq.el index a5732d00bc6..cf179fbf957 100644 --- a/lisp/mh-e/mh-seq.el +++ b/lisp/mh-e/mh-seq.el | |||
| @@ -134,7 +134,7 @@ you want to delete the messages, use \"\\[universal-argument] | |||
| 134 | (apply #'mh-speed-flists t folders-changed)))) | 134 | (apply #'mh-speed-flists t folders-changed)))) |
| 135 | 135 | ||
| 136 | ;; Shush compiler. | 136 | ;; Shush compiler. |
| 137 | (eval-when-compile (defvar view-exit-action)) | 137 | (defvar view-exit-action) |
| 138 | 138 | ||
| 139 | ;;;###mh-autoload | 139 | ;;;###mh-autoload |
| 140 | (defun mh-list-sequences () | 140 | (defun mh-list-sequences () |
diff --git a/lisp/mh-e/mh-show.el b/lisp/mh-e/mh-show.el index d7b656d3462..fb6698467da 100644 --- a/lisp/mh-e/mh-show.el +++ b/lisp/mh-e/mh-show.el | |||
| @@ -815,7 +815,7 @@ operation." | |||
| 815 | (put 'mh-show-mode 'mode-class 'special) | 815 | (put 'mh-show-mode 'mode-class 'special) |
| 816 | 816 | ||
| 817 | ;; Shush compiler. | 817 | ;; Shush compiler. |
| 818 | (eval-when-compile (defvar font-lock-auto-fontify)) | 818 | (defvar font-lock-auto-fontify) |
| 819 | 819 | ||
| 820 | ;;;###mh-autoload | 820 | ;;;###mh-autoload |
| 821 | (define-derived-mode mh-show-mode text-mode "MH-Show" | 821 | (define-derived-mode mh-show-mode text-mode "MH-Show" |
diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el index e41ee0bcc4f..8afb2993e17 100644 --- a/lisp/mh-e/mh-utils.el +++ b/lisp/mh-e/mh-utils.el | |||
| @@ -657,7 +657,7 @@ See `expand-file-name' for description of DEFAULT." | |||
| 657 | (defvar mh-folder-hist nil) | 657 | (defvar mh-folder-hist nil) |
| 658 | 658 | ||
| 659 | ;; Shush compiler. | 659 | ;; Shush compiler. |
| 660 | (eval-when-compile (defvar mh-speed-flists-cache)) | 660 | (defvar mh-speed-flists-cache) |
| 661 | 661 | ||
| 662 | (defvar mh-allow-root-folder-flag nil | 662 | (defvar mh-allow-root-folder-flag nil |
| 663 | "Non-nil means \"+\" is an acceptable folder name. | 663 | "Non-nil means \"+\" is an acceptable folder name. |