diff options
author | Bill Wohler <wohler@newt.com> | 2006-04-14 21:28:52 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2006-04-14 21:28:52 +0000 |
commit | 73e6d1af3e3449b6d207cafe76258ccd20ca9849 (patch) | |
tree | a2cb570244ca156c18c2db33d88f09478ef16c5a /lisp/mh-e | |
parent | 30545916edad04fb361ce02d05818d04f1e951d5 (diff) | |
download | emacs-73e6d1af3e3449b6d207cafe76258ccd20ca9849.tar.gz emacs-73e6d1af3e3449b6d207cafe76258ccd20ca9849.tar.bz2 emacs-73e6d1af3e3449b6d207cafe76258ccd20ca9849.zip |
* mh-funcs.el (view-exit-action): No need to wrap defvar with
eval-when-compile when shushing compiler.
* mh-mime.el (mh-identity-pgg-default-user-id): Ditto.
* mh-seq.el (view-exit-action): Ditto.
* mh-show.el (font-lock-auto-fontify): Ditto.
* mh-utils.el (mh-speed-flists-cache): Ditto
Diffstat (limited to 'lisp/mh-e')
-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 @@ 2006-04-14 Bill Wohler <wohler@newt.com> + * mh-funcs.el (view-exit-action): No need to wrap defvar with + eval-when-compile when shushing compiler. + + * mh-mime.el (mh-identity-pgg-default-user-id): Ditto. + + * mh-seq.el (view-exit-action): Ditto. + + * mh-show.el (font-lock-auto-fontify): Ditto. + + * mh-utils.el (mh-speed-flists-cache): Ditto + * mh-compat.el (mh-font-lock-add-keywords): New alias for font-lock-add-keywords. Returns nil on XEmacs. 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." (display-buffer mh-temp-buffer))) ;; Shush compiler. -(eval-when-compile (defvar view-exit-action)) +(defvar view-exit-action) ;;;###mh-autoload (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." (after-find-file nil))) ;; Shush compiler. -(eval-when-compile (defvar mh-identity-pgg-default-user-id)) +(defvar mh-identity-pgg-default-user-id) ;;;###mh-autoload (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] (apply #'mh-speed-flists t folders-changed)))) ;; Shush compiler. -(eval-when-compile (defvar view-exit-action)) +(defvar view-exit-action) ;;;###mh-autoload (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." (put 'mh-show-mode 'mode-class 'special) ;; Shush compiler. -(eval-when-compile (defvar font-lock-auto-fontify)) +(defvar font-lock-auto-fontify) ;;;###mh-autoload (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." (defvar mh-folder-hist nil) ;; Shush compiler. -(eval-when-compile (defvar mh-speed-flists-cache)) +(defvar mh-speed-flists-cache) (defvar mh-allow-root-folder-flag nil "Non-nil means \"+\" is an acceptable folder name. |