diff options
author | Dave Love <fx@gnu.org> | 2000-11-08 15:36:19 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-11-08 15:36:19 +0000 |
commit | 534aa266c715e65c6684998fe6bf54c1f6d7eb47 (patch) | |
tree | 31be370f498fbd3407e05da4016f0caf1db4835a /lisp/gnus/mml.el | |
parent | 9e153fefd2a2bad4f6932aea46940ba0291f2d8e (diff) | |
download | emacs-534aa266c715e65c6684998fe6bf54c1f6d7eb47.tar.gz emacs-534aa266c715e65c6684998fe6bf54c1f6d7eb47.tar.bz2 emacs-534aa266c715e65c6684998fe6bf54c1f6d7eb47.zip |
Put some defvars in eval-when-compile.
Diffstat (limited to 'lisp/gnus/mml.el')
-rw-r--r-- | lisp/gnus/mml.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index 05ad19024ee..2e1bd1675f4 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el @@ -507,8 +507,9 @@ If MML is non-nil, return the buffer up till the correspondent mml tag." (mail-header-encode-parameter (symbol-name type) value)))))) -(defvar ange-ftp-name-format) -(defvar efs-path-regexp) +(eval-when-compile + (defvar ange-ftp-name-format) + (defvar efs-path-regexp)) (defun mml-parse-file-name (path) (if (if (boundp 'efs-path-regexp) (string-match efs-path-regexp path) |