Variable: gnus-search-swish-e-switches
gnus-search-swish-e-switches is a customizable variable defined in
gnus-search.el.gz.
Value
nil
Documentation
A list of strings, to be given as additional arguments to swish-e.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-swish-e-switches "-i -w") ; wrong
Instead, use this:
(setq gnus-search-swish-e-switches '("-i" "-w"))
This variable can also be set per-server.
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
(defcustom gnus-search-swish-e-switches '()
"A list of strings, to be given as additional arguments to swish-e.
Note that this should be a list. I.e., do NOT use the following:
(setq gnus-search-swish-e-switches \"-i -w\") ; wrong
Instead, use this:
(setq gnus-search-swish-e-switches \\='(\"-i\" \"-w\"))
This variable can also be set per-server."
:type '(repeat string)
:version "28.1")