1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

rmail-header-summary fix for bug#12625

* lisp/mail/rmailsum.el (rmail-header-summary):
Fix 2010-11-26 test for multiline Subject: field.
This commit is contained in:
Glenn Morris 2012-10-11 21:01:50 -04:00
parent 55cd00c8f9
commit 3a989246b1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-10-12 Glenn Morris <rgm@gnu.org>
* mail/rmailsum.el (rmail-header-summary):
Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
* progmodes/python.el (python-mode-map): Replace

View File

@ -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))))