diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-18 22:00:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-18 22:00:30 +0000 |
commit | c0eae5b9bacfd8c561c60d41158c708f1c0c1f14 (patch) | |
tree | 7bd96c56672dbf20050415c27c548702638cbafd /lisp/emacs-lisp/tq.el | |
parent | f37fec30475b20cc86581605054651e47db86551 (diff) | |
download | emacs-c0eae5b9bacfd8c561c60d41158c708f1c0c1f14.tar.gz |
(tq-filter): No need for save-match-data.
Diffstat (limited to 'lisp/emacs-lisp/tq.el')
-rw-r--r-- | lisp/emacs-lisp/tq.el | 2 |
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) |