emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110515: rmail-header-summary fix for


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110515: rmail-header-summary fix for bug#12625
Date: Thu, 11 Oct 2012 21:01:50 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110515
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2012-10-11 21:01:50 -0400
message:
  rmail-header-summary fix for bug#12625
  
  * lisp/mail/rmailsum.el (rmail-header-summary):
  Fix 2010-11-26 test for multiline Subject: field.
modified:
  lisp/ChangeLog
  lisp/mail/rmailsum.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-12 00:07:25 +0000
+++ b/lisp/ChangeLog    2012-10-12 01:01:50 +0000
@@ -1,3 +1,8 @@
+2012-10-12  Glenn Morris  <address@hidden>
+
+       * mail/rmailsum.el (rmail-header-summary):
+       Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
+
 2012-10-12  Fabián Ezequiel Gallina  <address@hidden>
 
        * progmodes/python.el (python-mode-map): Replace

=== modified file 'lisp/mail/rmailsum.el'
--- a/lisp/mail/rmailsum.el     2012-01-19 07:21:25 +0000
+++ b/lisp/mail/rmailsum.el     2012-10-12 01:01:50 +0000
@@ -785,7 +785,7 @@
                 (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))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]