Variable: nnir-swish++-additional-switches
nnir-swish++-additional-switches is a customizable variable defined in
nnir.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 nnir-swish++-additional-switches "-i -w") ; wrong
Instead, use this:
(setq nnir-swish++-additional-switches '("-i" "-w"))
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defcustom nnir-swish++-additional-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 nnir-swish++-additional-switches \"-i -w\") ; wrong
Instead, use this:
(setq nnir-swish++-additional-switches \\='(\"-i\" \"-w\"))"
:type '(repeat (string)))