Variable: nnir-hyrex-additional-switches
nnir-hyrex-additional-switches is a customizable variable defined in
nnir.el.gz.
Value
nil
Documentation
A list of strings, to be given as additional arguments for nnir-search.
Note that this should be a list. I.e., do NOT use the following:
(setq nnir-hyrex-additional-switches "-ddl ddl.xml -c nnir") ; wrong !
Instead, use this:
(setq nnir-hyrex-additional-switches '("-ddl" "ddl.xml" "-c" "nnir"))
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defcustom nnir-hyrex-additional-switches '()
"A list of strings, to be given as additional arguments for nnir-search.
Note that this should be a list. I.e., do NOT use the following:
(setq nnir-hyrex-additional-switches \"-ddl ddl.xml -c nnir\") ; wrong !
Instead, use this:
(setq nnir-hyrex-additional-switches \\='(\"-ddl\" \"ddl.xml\" \"-c\" \"nnir\"))"
:type '(repeat (string)))