aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/etags.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index d869d0cdca7..36093105c6e 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -223,7 +223,9 @@ See documentation of variable tags-file-name."
223 (switch-to-buffer-other-window tagbuf) 223 (switch-to-buffer-other-window tagbuf)
224 (switch-to-buffer tagbuf)) 224 (switch-to-buffer tagbuf))
225 ) 225 )
226 (setq tags-loop-form '(find-tag nil t)) 226;; I turned this off because people complain that it causes trouble
227;; when they find a tag during a tags-search. M-0 M-. is easy enough. --RMS
228;; (setq tags-loop-form '(find-tag nil t))
227 ;; Return t in case used as the tags-loop-form. 229 ;; Return t in case used as the tags-loop-form.
228 t) 230 t)
229 231