changeset 1704:7e1897c2951b

* rmail.el (rmail-unix-mail-delimiter): Not all time zone names end with "T". Accept any sequence of three or four alphabetic characters.
author Jim Blandy <jimb@redhat.com>
date Thu, 24 Dec 1992 06:01:02 +0000
parents b5fbc3880aa3
children d4ea5385915f
files lisp/mail/rmail.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rmail.el	Thu Dec 24 06:00:32 1992 +0000
+++ b/lisp/mail/rmail.el	Thu Dec 24 06:01:02 1992 +0000
@@ -110,7 +110,7 @@
 ;;; 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]"
 		 "\\|"
 		 "\\) *")))