From 7a4aab4814991d48589169e41a90af752c9f3937 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 20 Sep 2001 17:45:26 +0000 Subject: [PATCH] Fix problem with IMAIL-SUMMARY-MATCH-LINE: messages with malformed dates were not being matched. --- v7/src/imail/imail-summary.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/v7/src/imail/imail-summary.scm b/v7/src/imail/imail-summary.scm index 5ba8791d3..272e1fb19 100644 --- a/v7/src/imail/imail-summary.scm +++ b/v7/src/imail/imail-summary.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: imail-summary.scm,v 1.44 2001/09/14 17:19:15 cph Exp $ +;;; $Id: imail-summary.scm,v 1.45 2001/09/20 17:45:26 cph Exp $ ;;; ;;; Copyright (c) 2000-2001 Massachusetts Institute of Technology ;;; @@ -487,9 +487,8 @@ SUBJECT is a string of regexps separated by commas." (string-append "[* ][D ][U ][A ][R ][F ] +\\([0-9]+\\) +\\([0-9.]+[a-zA-Z ]\\)" (if (ref-variable imail-summary-show-date mark) - " \\([ 123][0-9] [a-zA-Z]+\\)" - "") - " ") + " \\([ 123][0-9] [a-zA-Z]+ \\| +\\)" + " ")) (line-start mark 0) (line-end mark 0) #f)) -- 2.25.1