Variable: prolog-help-function

prolog-help-function is a variable defined in prolog.el.gz.

Value

((mercury nil) (eclipse prolog-help-online)
 (sicstus prolog-find-documentation) (swi prolog-help-online)
 (t prolog-help-online))

Documentation

Alist for the name of the function for finding help on a predicate.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
;;-------------------------------------------------------------------
;; Online help
;;-------------------------------------------------------------------

(defvar prolog-help-function
  '((mercury nil)
    (eclipse prolog-help-online)
    ;; (sicstus prolog-help-info)
    (sicstus prolog-find-documentation)
    (swi prolog-help-online)
    (t prolog-help-online))
  "Alist for the name of the function for finding help on a predicate.")