aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEric S. Raymond <[email protected]>1992-07-15 18:48:42 +0000
committerEric S. Raymond <[email protected]>1992-07-15 18:48:42 +0000
commit83023647e0c1769ad958d0c87618955f04d6b618 (patch)
tree883a20a46c0668fea1355c3864a57639b2121f13 /lisp
parent8c45d5227ade3847c62d328e1a560c87837b96e7 (diff)
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/tq.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/tq.el b/lisp/emacs-lisp/tq.el
index e9d3a80af5..4a5b155a55 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -1,18 +1,21 @@
;;; tq.el --- utility to maintain a transaction queue
-;;; Copyright (C) 1992 Scott Draves ([email protected])
-;;;
+;; Author: Scott Draves <[email protected]>
+;; Adapted-By: ESR
+
+;; 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.
+;;; Code:
(provide 'tq)