Function: prolog-compile-file

prolog-compile-file is an interactive and byte-compiled function defined in prolog.el.gz.

Signature

(prolog-compile-file)

Documentation

Compile file of current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-compile-file ()
  "Compile file of current buffer."
  (interactive)
  (if prolog-use-standard-consult-compile-method-flag
      (prolog-old-process-file t)
    (prolog-consult-compile-file t)))