Function: python-pdbtrack-unset-tracked-buffer

python-pdbtrack-unset-tracked-buffer is a byte-compiled function defined in python.el.gz.

Signature

(python-pdbtrack-unset-tracked-buffer)

Documentation

Untrack currently tracked buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-pdbtrack-unset-tracked-buffer ()
  "Untrack currently tracked buffer."
  (when (buffer-live-p python-pdbtrack-tracked-buffer)
    (with-current-buffer python-pdbtrack-tracked-buffer
      (set-marker overlay-arrow-position nil)))
  (setq python-pdbtrack-tracked-buffer nil))