From 10a14f6ac3f0d2464890bd9a4ef20ff228a9d255 Mon Sep 17 00:00:00 2001 From: Eric Abrahamsen Date: Sun, 16 May 2021 10:19:41 -0700 Subject: [PATCH] Fix function signature for gnus-search-indexed-parse-output * lisp/gnus/gnus-search.el (gnus-search-indexed-parse-output): Generic function arg list didn't match the method arglist, which made for confusing function help. --- lisp/gnus/gnus-search.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/gnus/gnus-search.el b/lisp/gnus/gnus-search.el index 61a1d675243..a59d0e57a79 100644 --- a/lisp/gnus/gnus-search.el +++ b/lisp/gnus/gnus-search.el @@ -1294,8 +1294,8 @@ elements are present." ;; First, some common methods. -(cl-defgeneric gnus-search-indexed-parse-output (engine server &optional groups) - "Parse the results of ENGINE's query against SERVER in GROUPS. +(cl-defgeneric gnus-search-indexed-parse-output (engine server query &optional groups) + "Parse the results of ENGINE's QUERY against SERVER in GROUPS. Locally-indexed search engines return results as a list of filenames, sometimes with additional information. Returns a list of viable results, in the form of a list of [group article score] -- 2.39.5