aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/tq.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/tq.el')
-rw-r--r--lisp/emacs-lisp/tq.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/tq.el b/lisp/emacs-lisp/tq.el
index 3a32c0b516..36b1cffbd8 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -25,7 +25,7 @@
;; Boston, MA 02111-1307, USA.
;;; Commentary:
-
+
;; manages receiving a stream asynchronously,
;; parsing it into transactions, and then calling
;; handler functions
@@ -68,7 +68,7 @@ to a tcp server on another machine."
(defun tq-queue-head-closure (tq) (car (cdr (car (tq-queue tq)))))
(defun tq-queue-empty (tq) (not (tq-queue tq)))
(defun tq-queue-pop (tq) (setcar tq (cdr (car tq))) (null (car tq)))
-
+
;;; must add to queue before sending!
(defun tq-enqueue (tq question regexp closure fn)