aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1994-12-28 08:12:25 +0000
committerRoland McGrath1994-12-28 08:12:25 +0000
commit9f051ac24d2c994dcd5c88fddb149fdeab83ce35 (patch)
tree352599e82fbaee5dc491fe6fc9fbe7cfd88736ec
parent6da7653c6b3eb43880c58702295d9c43894d2381 (diff)
downloademacs-9f051ac24d2c994dcd5c88fddb149fdeab83ce35.tar.gz
emacs-9f051ac24d2c994dcd5c88fddb149fdeab83ce35.zip
(find-tag-in-order): Don't set buffer-local value of tags-file-name.
-rw-r--r--lisp/progmodes/etags.el6
1 files changed, 0 insertions, 6 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 6c270d90222..84d0154c154 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -939,12 +939,6 @@ See documentation of variable `tags-file-name'."
939 (push-mark) 939 (push-mark)
940 (funcall goto-func tag-info) 940 (funcall goto-func tag-info)
941 941
942 ;; Give this buffer a local value of tags-file-name.
943 ;; The next time visit-tags-table-buffer is called,
944 ;; it will use the same tags table that found a match in this buffer.
945 (make-local-variable 'tags-file-name)
946 (setq tags-file-name tags-table-file)
947
948 ;; Return the buffer where the tag was found. 942 ;; Return the buffer where the tag was found.
949 (current-buffer)))) 943 (current-buffer))))
950 944