mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
Fix namazu search result parsing in gnus-search
* lisp/gnus/gnus-search.el (gnus-search-indexed-extract): This method is documented to leave point at the end of the extracted search result. The namazu implementation wasn't doing that.
This commit is contained in:
parent
5a1222196b
commit
fa735ebc0c
1 changed files with 1 additions and 0 deletions
|
|
@ -1514,6 +1514,7 @@ Namazu provides a little more information, for instance a score."
|
|||
(when (re-search-forward
|
||||
"^\\([0-9,]+\\.\\).*\\((score: \\([0-9]+\\)\\))\n\\([^ ]+\\)"
|
||||
nil t)
|
||||
(forward-line 1)
|
||||
(list (match-string 4)
|
||||
(match-string 3))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue