From xemacs-m  Mon Aug 25 11:14:22 1997
Received: from glauke.lcs.mit.edu (glauke.lcs.mit.edu [18.24.1.110])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA14820
	for <xemacs-beta@xemacs.org>; Mon, 25 Aug 1997 11:14:20 -0500 (CDT)
Received: (from athena@localhost)
          by glauke.lcs.mit.edu (8.8.4/8.8.4)
	  id MAA13527; Mon, 25 Aug 1997 12:17:58 -0400
Date: Mon, 25 Aug 1997 12:17:58 -0400
Message-Id: <199708251617.MAA13527@glauke.lcs.mit.edu>
From: Matteo Frigo <athena@glauke.lcs.mit.edu>
To: xemacs-beta@xemacs.org
Subject: rmail.el [19.16b90]: bug in modeline 
Comments: Hyperbole mail buttons accepted, v04.023.

lisp/rmail/rmail.el:rmail-get-new-mail fails with "Wrong type
argument" in the call 

(string-match " Mail" display-time-string)

on line 766.

Fix:

--- rmail-old.el	Mon Aug 25 12:15:24 1997
+++ rmail.el	Mon Aug 25 12:15:10 1997
@@ -763,6 +763,7 @@
 	  ;; #### BOGUS!  Run a hook here instead and let time.el do it.
 	  (and (boundp 'display-time-string)
 	       display-time-string
+	       (stringp display-time-string)
 	       (string-match " Mail" display-time-string)
 	       (setq display-time-string
 		     (concat

(The same fix already appears in the latest 20.3).

Regards,
MF

