Variable: gnus-search-swish++-switches

gnus-search-swish++-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++.

Note that this should be a list. I.e., do NOT use the following:
    (setq gnus-search-swish++-switches "-i -w") ; wrong
Instead, use this:
    (setq gnus-search-swish++-switches '("-i" "-w"))

This variable can also be set per-server.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
(defcustom gnus-search-swish++-switches '()
  "A list of strings, to be given as additional arguments to swish++.
Note that this should be a list.  I.e., do NOT use the following:
    (setq gnus-search-swish++-switches \"-i -w\") ; wrong
Instead, use this:
    (setq gnus-search-swish++-switches \\='(\"-i\" \"-w\"))

This variable can also be set per-server."
  :type '(repeat string))