Function: tq-filter

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

Signature

(tq-filter TQ STRING)

Documentation

Append STRING to the TQ's buffer; then process the new data.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tq.el.gz
(defun tq-filter (tq string)
  "Append STRING to the TQ's buffer; then process the new data."
  (let ((buffer (tq-buffer tq)))
    (when (buffer-live-p buffer)
      (with-current-buffer buffer
	(goto-char (point-max))
	(insert string)
	(tq-process-buffer tq)))))