Variable: nnir-swish-e-additional-switches
nnir-swish-e-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-e.
Note that this should be a list. I.e., do NOT use the following:
(setq nnir-swish-e-additional-switches "-i -w") ; wrong
Instead, use this:
(setq nnir-swish-e-additional-switches '("-i" "-w"))
This could be a server parameter.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defcustom nnir-swish-e-additional-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 nnir-swish-e-additional-switches \"-i -w\") ; wrong
Instead, use this:
(setq nnir-swish-e-additional-switches \\='(\"-i\" \"-w\"))
This could be a server parameter."
:type '(repeat (string)))