diff options
| author | Richard M. Stallman | 1992-07-07 17:57:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-07-07 17:57:20 +0000 |
| commit | ca04638e0f68ed1483bb293f9e7fc1208cb6db8d (patch) | |
| tree | 756453def74de8c94a89492133098538647a84be | |
| parent | ba7f25a355c00cf500220558961e72672201366c (diff) | |
| download | emacs-ca04638e0f68ed1483bb293f9e7fc1208cb6db8d.tar.gz emacs-ca04638e0f68ed1483bb293f9e7fc1208cb6db8d.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/progmodes/etags.el | 4 |
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 | ||