From: Glenn Morris Date: Fri, 12 Oct 2012 01:01:50 +0000 (-0400) Subject: rmail-header-summary fix for bug#12625 X-Git-Tag: emacs-24.2.90~235^2~21 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3a989246b190eb90edc8cbf2b4f031d44d00e9ca;p=emacs.git rmail-header-summary fix for bug#12625 * lisp/mail/rmailsum.el (rmail-header-summary): Fix 2010-11-26 test for multiline Subject: field. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19e51cc603a..4424a5fb389 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-10-12 Glenn Morris + + * mail/rmailsum.el (rmail-header-summary): + Fix 2010-11-26 test for multiline Subject: field. (Bug#12625) + 2012-10-12 Fabián Ezequiel Gallina * progmodes/python.el (python-mode-map): Replace diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index d3a464161cb..612ccbdfd9e 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -785,7 +785,7 @@ the message being processed." (setq pos (point)) (forward-line 1) (setq str (buffer-substring pos (1- (point)))) - (while (looking-at "\\s ") + (while (looking-at "[ \t]") (setq str (concat str " " (buffer-substring (match-end 0) (line-end-position))))