]> git.eshelyaron.com Git - emacs.git/commitdiff
* nnir.el (nnir-run-namazu): Parse namazu results that are larger than 999
authorGeorge McNinch <gmcninch@gmail.com>
Fri, 7 Mar 2014 16:58:25 +0000 (17:58 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 7 Mar 2014 16:58:25 +0000 (17:58 +0100)
(i.e. "1,342").

lisp/gnus/ChangeLog
lisp/gnus/nnir.el

index dd66afc34c426eeaaf3d4a7f0b50f42ed59d08bb..6052ca34d78106bf9d84c09796c90edf9d6c26da 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-07  George McNinch  <gmcninch@gmail.com>  (tiny change)
+
+       * nnir.el (nnir-run-namazu): Parse namazu results that are larger than
+       999 correctly (i.e. "1,342").
+
 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug
index 404cab114da7b1b20e69f5af643ce553f7a4cb35..5910cde1c3d1a145b25b7f864c8826532fc39210 100644 (file)
@@ -1487,7 +1487,7 @@ Tested with Namazu 2.0.6 on a GNU/Linux system."
 
       (goto-char (point-min))
       (while (re-search-forward
-              "^\\([0-9]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)"
+              "^\\([0-9,]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)"
               nil t)
         (setq score (match-string 3)
               group (file-name-directory (match-string 4))