summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-01-27 13:49:00 +0000
committerGerd Moellmann <gerd@gnu.org>2001-01-27 13:49:00 +0000
commitdc0274bd753539af49aa0a6c49c50ad5e765f25b (patch)
treea5bb56128a67e69e0ca554fcf8f512458a7ea501
parent550135d1a3b8779fcd88c0e1c5a9a14362661e1a (diff)
downloademacs-dc0274bd753539af49aa0a6c49c50ad5e765f25b.tar.gz
(find-tag-noselect): Don't bind
tags-file-name.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/etags.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 31da8a33a6b..04abb0470a0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-27 Gerd Moellmann <gerd@gnu.org>
+
+ * progmodes/etags.el (find-tag-noselect): Don't bind
+ tags-file-name.
+
2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
* shell.el (shell-unquote-argument): If the shell is one of the
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 131610e09d7..3735b2f0ff6 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -823,8 +823,7 @@ See documentation of variable `tags-file-name'."
;; Save the current buffer's value of `find-tag-hook' before
;; selecting the tags table buffer. For the same reason, save value
;; of `tags-file-name' in case it has a buffer-local value.
- (let ((local-find-tag-hook find-tag-hook)
- (tags-file-name tags-file-name))
+ (let ((local-find-tag-hook find-tag-hook))
(if (eq '- next-p)
;; Pop back to a previous location.
(if (ring-empty-p tags-location-ring)