From 151c7da2547e48e0400313d7205494193be849d6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 3 Jan 1994 05:14:06 +0000 Subject: [PATCH] (rmail-get-new-mail): Cope if display-time-string is nil. --- lisp/mail/rmail.el | 1 + 1 file changed, 1 insertion(+) 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 -- 2.39.5