diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/rmailsum.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19e51cc603a..4424a5fb389 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-10-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * mail/rmailsum.el (rmail-header-summary): | ||
| 4 | Fix 2010-11-26 test for multiline Subject: field. (Bug#12625) | ||
| 5 | |||
| 1 | 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca> | 6 | 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca> |
| 2 | 7 | ||
| 3 | * progmodes/python.el (python-mode-map): Replace | 8 | * 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." | |||
| 785 | (setq pos (point)) | 785 | (setq pos (point)) |
| 786 | (forward-line 1) | 786 | (forward-line 1) |
| 787 | (setq str (buffer-substring pos (1- (point)))) | 787 | (setq str (buffer-substring pos (1- (point)))) |
| 788 | (while (looking-at "\\s ") | 788 | (while (looking-at "[ \t]") |
| 789 | (setq str (concat str " " | 789 | (setq str (concat str " " |
| 790 | (buffer-substring (match-end 0) | 790 | (buffer-substring (match-end 0) |
| 791 | (line-end-position)))) | 791 | (line-end-position)))) |