From: Roland McGrath Date: Wed, 28 Dec 1994 08:12:25 +0000 (+0000) Subject: (find-tag-in-order): Don't set buffer-local value of tags-file-name. X-Git-Tag: emacs-19.34~5579 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f051ac24d2c994dcd5c88fddb149fdeab83ce35;p=emacs.git (find-tag-in-order): Don't set buffer-local value of tags-file-name. --- 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'." (push-mark) (funcall goto-func tag-info) - ;; Give this buffer a local value of tags-file-name. - ;; The next time visit-tags-table-buffer is called, - ;; it will use the same tags table that found a match in this buffer. - (make-local-variable 'tags-file-name) - (setq tags-file-name tags-table-file) - ;; Return the buffer where the tag was found. (current-buffer))))