summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-18 22:00:30 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-18 22:00:30 +0000
commitc759ad6ec1f2cb2a1206ccb939e4a220279b941c (patch)
treef302a42eb40bbde39bced471a107da779b06e44a /lisp
parent09947e495d791ab4008d9a2c1d8ccb4d61549422 (diff)
downloademacs-c759ad6ec1f2cb2a1206ccb939e4a220279b941c.tar.gz
(tq-filter): No need for save-match-data.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/tq.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/tq.el b/lisp/emacs-lisp/tq.el
index e0524bb6e19..0de2c48e638 100644
--- a/lisp/emacs-lisp/tq.el
+++ b/lisp/emacs-lisp/tq.el
@@ -89,7 +89,7 @@ that's how we tell where the answer ends."
"Append STRING to the TQ's buffer; then process the new data."
(let ((old-buffer (current-buffer)))
(unwind-protect
- (save-match-data
+ (progn
(set-buffer (tq-buffer tq))
(goto-char (point-max))
(insert string)