diff options
| author | Lars Ingebrigtsen | 2014-02-11 21:48:39 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-11 21:48:39 -0800 |
| commit | d024b579cdac8ee7b173885af84259392dfdf247 (patch) | |
| tree | aff8f220549829b6aa34c3045e1098fe5ee37832 /lisp/gnus | |
| parent | fa79297982fe051950dcae94b34e0e8c2aa72055 (diff) | |
| download | emacs-d024b579cdac8ee7b173885af84259392dfdf247.tar.gz emacs-d024b579cdac8ee7b173885af84259392dfdf247.zip | |
* nnmail.el (nnmail-expand-newtext): Further sub-match fixups (bug#12375).
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnmail.el | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 231a68035c7..79ba8126c21 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-02-12 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * nnmail.el (nnmail-expand-newtext): Further sub-match fixups | ||
| 4 | (bug#12375). | ||
| 5 | |||
| 1 | 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2014-02-09 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * message.el (message-tab): Mention what happens on normal tabs | 8 | * message.el (message-tab): Mention what happens on normal tabs |
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index 6c6025b3fd2..d7af9d84406 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el | |||
| @@ -1542,6 +1542,9 @@ See the documentation for the variable `nnmail-split-fancy' for details." | |||
| 1542 | (if (= c ?\&) | 1542 | (if (= c ?\&) |
| 1543 | (setq N 0) | 1543 | (setq N 0) |
| 1544 | (setq N (- c ?0))) | 1544 | (setq N (- c ?0))) |
| 1545 | ;; We wrapped the searches in parentheses, so we have to | ||
| 1546 | ;; add some parentheses here... | ||
| 1547 | (setq N (+ N 3)) | ||
| 1545 | (when (match-beginning N) | 1548 | (when (match-beginning N) |
| 1546 | (push (if nnmail-split-lowercase-expanded | 1549 | (push (if nnmail-split-lowercase-expanded |
| 1547 | (downcase (buffer-substring (match-beginning N) | 1550 | (downcase (buffer-substring (match-beginning N) |