Function: prolog-old-process-file

prolog-old-process-file is a byte-compiled function defined in prolog.el.gz.

Signature

(prolog-old-process-file COMPILEP)

Documentation

Process the file of the current buffer.

If COMPILEP is non-nil then use compilation, otherwise consulting.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-old-process-file (compilep)
  "Process the file of the current buffer.
If COMPILEP is non-nil then use compilation, otherwise consulting."
  (save-some-buffers)
  (prolog-ensure-process)
  (with-current-buffer (prolog-inferior-buffer)
    (compilation-forget-errors))
    (process-send-string
     "prolog" (prolog-build-prolog-command
             compilep buffer-file-name
             (prolog-bsts buffer-file-name)))
  (prolog-goto-prolog-process-buffer))