Function: prolog-disable-sicstus-sd

prolog-disable-sicstus-sd is an interactive and byte-compiled function defined in prolog.el.gz.

Signature

(prolog-disable-sicstus-sd)

Documentation

Disable the source level debugging facilities of SICStus 3.7 and later.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-disable-sicstus-sd ()
  "Disable the source level debugging facilities of SICStus 3.7 and later."
  (interactive)
  (require 'pltrace)
  (setq prolog-use-sicstus-sd nil)
  ;; Remove the hook
  (remove-hook 'prolog-inferior-mode-hook 'pltrace-on)
  ;; If there is a *prolog* buffer, then call pltrace-off
  (if (get-buffer "*prolog*")
      (pltrace-off)))