diff options
| author | George McNinch | 2014-03-07 17:58:25 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-03-07 17:58:25 +0100 |
| commit | 45e2ca143dd3b4fcd418f6e055996c027f9e47d4 (patch) | |
| tree | 44f1bec7a7022884eed7d2c2d3b474b998037559 | |
| parent | 2c6053e8387ca3d60dcc82e702f5a113ce5fb59f (diff) | |
| download | emacs-45e2ca143dd3b4fcd418f6e055996c027f9e47d4.tar.gz emacs-45e2ca143dd3b4fcd418f6e055996c027f9e47d4.zip | |
* nnir.el (nnir-run-namazu): Parse namazu results that are larger than 999
(i.e. "1,342").
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnir.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index dd66afc34c4..6052ca34d78 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-03-07 George McNinch <gmcninch@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * nnir.el (nnir-run-namazu): Parse namazu results that are larger than | ||
| 4 | 999 correctly (i.e. "1,342"). | ||
| 5 | |||
| 1 | 2014-03-07 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2014-03-07 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 7 | ||
| 3 | * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug | 8 | * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug |
diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index 404cab114da..5910cde1c3d 100644 --- a/lisp/gnus/nnir.el +++ b/lisp/gnus/nnir.el | |||
| @@ -1487,7 +1487,7 @@ Tested with Namazu 2.0.6 on a GNU/Linux system." | |||
| 1487 | 1487 | ||
| 1488 | (goto-char (point-min)) | 1488 | (goto-char (point-min)) |
| 1489 | (while (re-search-forward | 1489 | (while (re-search-forward |
| 1490 | "^\\([0-9]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)" | 1490 | "^\\([0-9,]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)" |
| 1491 | nil t) | 1491 | nil t) |
| 1492 | (setq score (match-string 3) | 1492 | (setq score (match-string 3) |
| 1493 | group (file-name-directory (match-string 4)) | 1493 | group (file-name-directory (match-string 4)) |