# HG changeset patch # User Jim Blandy # Date 725176862 0 # Node ID 7e1897c2951ba23d4c0e8814ed132457fe74f467 # Parent b5fbc3880aa33db63e7a93a26475282a56a6ed08 * rmail.el (rmail-unix-mail-delimiter): Not all time zone names end with "T". Accept any sequence of three or four alphabetic characters. diff -r b5fbc3880aa3 -r 7e1897c2951b lisp/mail/rmail.el --- 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]" "\\|" "\\) *")))