aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-09-12 15:55:47 +0000
committerStefan Monnier2003-09-12 15:55:47 +0000
commit2b652064c62bf518ecd2ac6ee328aca54bb651a0 (patch)
tree4f42308147fafe5a479083c4ea0904a9cfa86e7d
parentda92b8d99097f46cecc2e626a274bda21937e1fd (diff)
downloademacs-2b652064c62bf518ecd2ac6ee328aca54bb651a0.tar.gz
emacs-2b652064c62bf518ecd2ac6ee328aca54bb651a0.zip
(tq-create): Fix mixed up unquote style.
-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 516816b4320..f7db20859d5 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -1,6 +1,6 @@
1;;; tq.el --- utility to maintain a transaction queue 1;;; tq.el --- utility to maintain a transaction queue
2 2
3;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 1986, 1987, 1992, 2003 Free Software Foundation, Inc.
4 4
5;; Author: Scott Draves <spot@cs.cmu.edu> 5;; Author: Scott Draves <spot@cs.cmu.edu>
6;; Maintainer: FSF 6;; Maintainer: FSF
@@ -50,7 +50,7 @@ to a tcp server on another machine."
50 (process-name process))))))) 50 (process-name process)))))))
51 (set-process-filter process 51 (set-process-filter process
52 `(lambda (proc string) 52 `(lambda (proc string)
53 (tq-filter '(, tq) string))) 53 (tq-filter ',tq string)))
54 tq)) 54 tq))
55 55
56;;; accessors 56;;; accessors