* rmail.el (rmail-unix-mail-delimiter): Not all time zone names
authorJim Blandy <jimb@redhat.com>
Thu, 24 Dec 1992 06:01:02 +0000 (06:01 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 24 Dec 1992 06:01:02 +0000 (06:01 +0000)
end with "T".  Accept any sequence of three or four alphabetic
characters.

lisp/mail/rmail.el

index 7ddb35e..9bd925c 100644 (file)
@@ -110,7 +110,7 @@ Called with region narrowed to unformatted header.")
 ;;; that knows the exact ordering of the \\( \\) subexpressions.
 (defvar rmail-unix-mail-delimiter
   (let ((time-zone-regexp
-        (concat "\\([A-Z]?[A-Z][A-Z]T\\( DST\\)?"
+        (concat "\\([A-Z]?[A-Z][A-Z][A-Z]\\( DST\\)?"
                 "\\|[-+]?[0-9][0-9][0-9][0-9]"
                 "\\|"
                 "\\) *")))