aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-01-09 19:26:27 +0000
committerBill Wohler2006-01-09 19:26:27 +0000
commit6eb83a35e18abe5f7681b485783e93827f95706a (patch)
tree08e378882612e5991ea2dd661ec9bc1fadbfa5b9
parent6fee12e66daa90d6724c4e9cc433bfddaad0a239 (diff)
downloademacs-6eb83a35e18abe5f7681b485783e93827f95706a.tar.gz
emacs-6eb83a35e18abe5f7681b485783e93827f95706a.zip
Use consistent verbiage with compiler defvars.
Removed defvars that are no longer needed.
-rw-r--r--lisp/mh-e/mh-e.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el
index b5c8d7107a6..31ae49bfc43 100644
--- a/lisp/mh-e/mh-e.el
+++ b/lisp/mh-e/mh-e.el
@@ -1753,7 +1753,7 @@ purely for compatibility. The former symbol is used in Emacs 21.4
1753onward while the latter is used in previous versions and XEmacs." 1753onward while the latter is used in previous versions and XEmacs."
1754 (if (boundp 'write-file-functions) 1754 (if (boundp 'write-file-functions)
1755 ''write-file-functions ;Emacs 21.4 1755 ''write-file-functions ;Emacs 21.4
1756 ''local-write-file-hooks)) ;<Emacs 21.4, XEmacs 1756 ''local-write-file-hooks)) ;XEmacs
1757 1757
1758;; Register mh-folder-mode as supporting which-function-mode... 1758;; Register mh-folder-mode as supporting which-function-mode...
1759(load "which-func" t t) 1759(load "which-func" t t)
@@ -1761,12 +1761,10 @@ onward while the latter is used in previous versions and XEmacs."
1761 (not (member 'mh-folder-mode which-func-modes))) 1761 (not (member 'mh-folder-mode which-func-modes)))
1762 (push 'mh-folder-mode which-func-modes)) 1762 (push 'mh-folder-mode which-func-modes))
1763 1763
1764;; Shush compiler in non-bleeding edge versions of Emacs. 1764;; Shush compiler.
1765(eval-when-compile 1765(eval-when-compile
1766 (defvar desktop-save-buffer) ;Emacs 21.4 1766 (defvar desktop-save-buffer)
1767 (defvar font-lock-auto-fontify) 1767 (defvar font-lock-auto-fontify))
1768 (defvar font-lock-defaults)
1769 (defvar tool-bar-map))
1770 1768
1771(defvar mh-folder-buttons-init-flag nil) 1769(defvar mh-folder-buttons-init-flag nil)
1772 1770