Function: prolog-help-apropos

prolog-help-apropos is an interactive and byte-compiled function defined in prolog.el.gz.

Signature

(prolog-help-apropos STRING)

Documentation

Find Prolog apropos on given STRING.

This function is only available when prolog-system is set to swi.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-help-apropos (string)
  "Find Prolog apropos on given STRING.
This function is only available when `prolog-system' is set to `swi'."
  (interactive "sApropos: ")
  (cond
   ((eq prolog-system 'swi)
    (prolog-ensure-process)
    (process-send-string "prolog" (concat "apropos(" string ").\n"))
    (display-buffer "*prolog*"))
   (t
    (error "Sorry, no Prolog apropos available for this Prolog system"))))