Function: tq-close

tq-close is a byte-compiled function defined in tq.el.gz.

Signature

(tq-close TQ)

Documentation

Shut down transaction queue TQ, terminating the process.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tq.el.gz
(defun tq-close (tq)
  "Shut down transaction queue TQ, terminating the process."
  (delete-process (tq-process tq))
  (kill-buffer (tq-buffer tq)))