diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-04-13 17:16:40 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-04-13 17:16:40 +0000 |
commit | 7aa122f48c048b8538e48a3a4968429588d1bfbe (patch) | |
tree | 02ad403e1360e58d3e301e81749f9348e538e2ce | |
parent | 63d4cd245b51fbb22845bb71e0f49bc1156281bc (diff) | |
download | emacs-7aa122f48c048b8538e48a3a4968429588d1bfbe.tar.gz emacs-7aa122f48c048b8538e48a3a4968429588d1bfbe.tar.bz2 emacs-7aa122f48c048b8538e48a3a4968429588d1bfbe.zip |
Customize mail-use-rfc822.
-rw-r--r-- | lisp/mail/mail-utils.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index 002c37d8125..5414bf58fa9 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el @@ -34,10 +34,12 @@ (require 'lisp-mode) ;;;###autoload -(defvar mail-use-rfc822 nil "\ +(defcustom mail-use-rfc822 nil "\ *If non-nil, use a full, hairy RFC822 parser on mail addresses. Otherwise, (the default) use a smaller, somewhat faster, and -often correct parser.") +often correct parser." + :type 'boolean + :group 'mail) ;; Returns t if file FILE is an Rmail file. ;;;###autoload |