Function: prolog-goto-prolog-process-buffer
prolog-goto-prolog-process-buffer is a byte-compiled function defined
in prolog.el.gz.
Signature
(prolog-goto-prolog-process-buffer)
Documentation
Switch to the prolog process buffer and go to its end.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-goto-prolog-process-buffer ()
"Switch to the prolog process buffer and go to its end."
(switch-to-buffer-other-window "*prolog*")
(goto-char (point-max))
)