diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-02-05 13:00:43 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-02-05 13:00:43 +0000 |
commit | 4f9c00e2dc1e780ba79554fa8620cf875e196d19 (patch) | |
tree | c74d0d7286e9c9510d903d32b7ff224335bc4ebc /lisp/mail/mail-extr.el | |
parent | 42c28f29df382c5453956e0e66c9dbc0370ba1b7 (diff) | |
download | emacs-4f9c00e2dc1e780ba79554fa8620cf875e196d19.tar.gz |
(erc-valid-nick-regexp): Replace `legal' with `valid'.
Diffstat (limited to 'lisp/mail/mail-extr.el')
-rw-r--r-- | lisp/mail/mail-extr.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/mail-extr.el b/lisp/mail/mail-extr.el index c43b0d5a2b0..dd44507ee57 100644 --- a/lisp/mail/mail-extr.el +++ b/lisp/mail/mail-extr.el @@ -850,7 +850,7 @@ consing a string.)" (setq char ?\() ; HAVE I NO SHAME?? ) ;; record the position of various interesting chars, determine - ;; legality later. + ;; validity later. ((setq record-pos-symbol (cdr (assq char '((?< . <-pos) (?> . >-pos) (?@ . @-pos) @@ -862,9 +862,9 @@ consing a string.)" ((eq char ?.) (forward-char 1)) ((memq char '( - ;; comment terminator illegal + ;; comment terminator invalid ?\) - ;; domain literal terminator illegal + ;; domain literal terminator invalid ?\] ;; \ allowed only within quoted strings, ;; domain literals, and comments |