summaryrefslogtreecommitdiff
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.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/tq.el b/lisp/emacs-lisp/tq.el
index 18c94f27cfd..3a32c0b5169 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -26,15 +26,15 @@
;;; Commentary:
-;;; manages receiving a stream asynchronously,
-;;; parsing it into transactions, and then calling
-;;; handler functions
-
-;;; Our basic structure is the queue/process/buffer triple. Each entry
-;;; of the queue is a regexp/closure/function triple. We buffer
-;;; bytes from the process until we see the regexp at the head of the
-;;; queue. Then we call the function with the closure and the
-;;; collected bytes.
+;; manages receiving a stream asynchronously,
+;; parsing it into transactions, and then calling
+;; handler functions
+
+;; Our basic structure is the queue/process/buffer triple. Each entry
+;; of the queue is a regexp/closure/function triple. We buffer
+;; bytes from the process until we see the regexp at the head of the
+;; queue. Then we call the function with the closure and the
+;; collected bytes.
;;; Code: