From: Eric Abrahamsen Date: Wed, 11 Nov 2020 17:34:53 +0000 (-0800) Subject: Fix defgeneric name of gnus-search-index(ed)-extract X-Git-Tag: emacs-28.0.90~5185 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d22a914c799ee9cf076ed8eb1d5487500b8d06aa;p=emacs.git Fix defgeneric name of gnus-search-index(ed)-extract * lisp/gnus/gnus-search.el (gnus-search-indexed-extract): Had the wrong name on the generic. --- diff --git a/lisp/gnus/gnus-search.el b/lisp/gnus/gnus-search.el index 8b71daa9ff0..fad120ad8ec 100644 --- a/lisp/gnus/gnus-search.el +++ b/lisp/gnus/gnus-search.el @@ -1315,7 +1315,7 @@ filenames, sometimes with additional information. Returns a list of viable results, in the form of a list of [group article score] vectors.") -(cl-defgeneric gnus-search-index-extract (engine) +(cl-defgeneric gnus-search-indexed-extract (engine) "Extract a single article result from the current buffer. Returns a list of two values: a file name, and a relevancy score. Advances point to the beginning of the next result.")