Variable: prolog-program-switches

prolog-program-switches is a customizable variable defined in prolog.el.gz.

Value

((sicstus
  ("-i"))
 (t nil))

Documentation

Alist of switches given to inferior Prolog run with run-prolog.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defcustom prolog-program-switches
  '((sicstus ("-i"))
    (t nil))
  "Alist of switches given to inferior Prolog run with `run-prolog'."
  :version "24.1"
  :group 'prolog-inferior
  :type '(repeat (list (choice symbol sexp) (choice (repeat string) sexp)))
  :risky t)