aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Eglen1998-04-13 17:16:40 +0000
committerStephen Eglen1998-04-13 17:16:40 +0000
commit7aa122f48c048b8538e48a3a4968429588d1bfbe (patch)
tree02ad403e1360e58d3e301e81749f9348e538e2ce
parent63d4cd245b51fbb22845bb71e0f49bc1156281bc (diff)
downloademacs-7aa122f48c048b8538e48a3a4968429588d1bfbe.tar.gz
emacs-7aa122f48c048b8538e48a3a4968429588d1bfbe.zip
Customize mail-use-rfc822.
-rw-r--r--lisp/mail/mail-utils.el6
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 @@
34(require 'lisp-mode) 34(require 'lisp-mode)
35 35
36;;;###autoload 36;;;###autoload
37(defvar mail-use-rfc822 nil "\ 37(defcustom mail-use-rfc822 nil "\
38*If non-nil, use a full, hairy RFC822 parser on mail addresses. 38*If non-nil, use a full, hairy RFC822 parser on mail addresses.
39Otherwise, (the default) use a smaller, somewhat faster, and 39Otherwise, (the default) use a smaller, somewhat faster, and
40often correct parser.") 40often correct parser."
41 :type 'boolean
42 :group 'mail)
41 43
42;; Returns t if file FILE is an Rmail file. 44;; Returns t if file FILE is an Rmail file.
43;;;###autoload 45;;;###autoload