diff options
| author | Glenn Morris | 2012-10-11 21:01:50 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-11 21:01:50 -0400 |
| commit | 3a989246b190eb90edc8cbf2b4f031d44d00e9ca (patch) | |
| tree | 4c5c3090bca06e76a33159f7d83b56937d48f644 /lisp/mail | |
| parent | 55cd00c8f958ff627521c73113a5ea66fe4e4a57 (diff) | |
| download | emacs-3a989246b190eb90edc8cbf2b4f031d44d00e9ca.tar.gz emacs-3a989246b190eb90edc8cbf2b4f031d44d00e9ca.zip | |
rmail-header-summary fix for bug#12625
* lisp/mail/rmailsum.el (rmail-header-summary):
Fix 2010-11-26 test for multiline Subject: field.
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/rmailsum.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |