aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1996-01-05 07:14:40 +0000
committerRichard M. Stallman1996-01-05 07:14:40 +0000
commit29565a87223a1ca2223b79227f51fc15f3c8270f (patch)
tree9cbbae432436ae0986edf50fd9527f2abfead49e /lisp
parent6a994023c4e73dfeb72881d915e2ed17396b2792 (diff)
downloademacs-29565a87223a1ca2223b79227f51fc15f3c8270f.tar.gz
emacs-29565a87223a1ca2223b79227f51fc15f3c8270f.zip
(mail-extr-nuke-outside-range): Fix error message.
(mail-extract-address-components, what-domain): Fix error messages.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/mail-extr.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el
index 772750e11a6..2d84609bf42 100644
--- a/lisp/mail/mail-extr.el
+++ b/lisp/mail/mail-extr.el
@@ -645,7 +645,7 @@ by translating things like \"foo!bar!baz@host\" into \"baz@bar.UUCP\".")
645 ;; which lie outside of the range, one character at that position is 645 ;; which lie outside of the range, one character at that position is
646 ;; replaced with a SPC. 646 ;; replaced with a SPC.
647 (or (memq no-replace '(t nil)) 647 (or (memq no-replace '(t nil))
648 (error "no-replace must be t or nil, evaluable at macroexpand-time.")) 648 (error "no-replace must be t or nil, evaluable at macroexpand-time"))
649 (` (let ((temp (, list-symbol)) 649 (` (let ((temp (, list-symbol))
650 ch) 650 ch)
651 (while temp 651 (while temp
@@ -759,7 +759,7 @@ If ADDRESS contains more than one RFC-822 address, only the first is
759 ((bufferp address) 759 ((bufferp address)
760 (insert-buffer-substring address)) 760 (insert-buffer-substring address))
761 (t 761 (t
762 (error "Illegal address: %s" address))) 762 (error "Invalid address: %s" address)))
763 763
764 ;; stolen from rfc822.el 764 ;; stolen from rfc822.el
765 ;; Unfold multiple lines. 765 ;; Unfold multiple lines.
@@ -1955,7 +1955,7 @@ If ADDRESS contains more than one RFC-822 address, only the first is
1955 mail-extr-all-top-level-domains nil t)))) 1955 mail-extr-all-top-level-domains nil t))))
1956 (or (setq domain (intern-soft (downcase domain) 1956 (or (setq domain (intern-soft (downcase domain)
1957 mail-extr-all-top-level-domains)) 1957 mail-extr-all-top-level-domains))
1958 (error "no such domain")) 1958 (error "No such domain"))
1959 (message "%s: %s" (upcase (symbol-name domain)) (get domain 'domain-name))) 1959 (message "%s: %s" (upcase (symbol-name domain)) (get domain 'domain-name)))
1960 1960
1961 1961