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:
Eric Abrahamsen 2021-02-07 13:46:50 -08:00
parent 5a1222196b
commit fa735ebc0c

View file

@ -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))))