diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-03 05:14:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-03 05:14:06 +0000 |
commit | 151c7da2547e48e0400313d7205494193be849d6 (patch) | |
tree | 05f58580b311d959e38bce1572de2a67388f1560 /lisp/mail | |
parent | 4138e6000892b340c12629465060c587058c000d (diff) | |
download | emacs-151c7da2547e48e0400313d7205494193be849d6.tar.gz |
(rmail-get-new-mail): Cope if display-time-string is nil.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/rmail.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 3aa0391eef0..fcda6eb0ec5 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -720,6 +720,7 @@ argument causes us to read a file name and use that file as the inbox." (message "%d new message%s read" new-messages (if (= 1 new-messages) "" "s")) (and (boundp 'display-time-string) + (stringp display-time-string) (string-match " Mail" display-time-string) (setq display-time-string (concat |