Function: prolog-find-documentation
prolog-find-documentation is an interactive and byte-compiled function
defined in prolog.el.gz.
Signature
(prolog-find-documentation)
Documentation
Go to the Info node for a predicate in the SICStus Info manual.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Help function with completion
;; Stolen from Per Mildner's SICStus debugger mode and modified
(defun prolog-find-documentation ()
"Go to the Info node for a predicate in the SICStus Info manual."
(interactive)
(let ((pred (prolog-read-predicate)))
(prolog-goto-predicate-info pred)))