diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-09-07 04:15:28 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-09-07 04:15:28 +0000 |
commit | c9d4c64bd7af15df92752478f096b7cc551804ce (patch) | |
tree | 82eef6d1e996b7868aa45da7df945eb67cf62d31 | |
parent | 00889cf95702232c0199b8e9af13c75d219c0e82 (diff) | |
download | emacs-c9d4c64bd7af15df92752478f096b7cc551804ce.tar.gz emacs-c9d4c64bd7af15df92752478f096b7cc551804ce.tar.bz2 emacs-c9d4c64bd7af15df92752478f096b7cc551804ce.zip |
(mh-inc-spool-list): Correctly declare the external var.
-rw-r--r-- | lisp/mh-e/mh-inc.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-inc.el b/lisp/mh-e/mh-inc.el index 42ca018506f..682b8aa7c53 100644 --- a/lisp/mh-e/mh-inc.el +++ b/lisp/mh-e/mh-inc.el @@ -74,7 +74,7 @@ "] inc " folder " folder\n")))) ;; Avoid compiler warning -(eval-when-compile (defvar mh-inc-spool-list)) +(defvar mh-inc-spool-list) (defun mh-inc-spool-make () "Make all commands and defines keys for contents of `mh-inc-spool-list'." @@ -98,10 +98,10 @@ This is called after 'customize is used to alter `mh-inc-spool-list'." (provide 'mh-inc) -;;; Local Variables: -;;; indent-tabs-mode: nil -;;; sentence-end-double-space: nil -;;; End: +;; Local Variables: +;; indent-tabs-mode: nil +;; sentence-end-double-space: nil +;; End: -;;; arch-tag: 3713cf2a-6082-4cb4-8ce2-99d9acaba835 +;; arch-tag: 3713cf2a-6082-4cb4-8ce2-99d9acaba835 ;;; mh-inc.el ends here |