Mercurial > emacs
comparison lisp/progmodes/etags.el @ 747:701693a7acb7
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 07 Jul 1992 17:57:20 +0000 |
parents | 98bdd205ec6f |
children | f9874f408ddf |
comparison
equal
deleted
inserted
replaced
746:1b0748ff6f65 | 747:701693a7acb7 |
---|---|
221 (let ((tagbuf (find-tag-noselect tagname nil next))) | 221 (let ((tagbuf (find-tag-noselect tagname nil next))) |
222 (if other-window | 222 (if other-window |
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 |
230 ;;;###autoload | 232 ;;;###autoload |
231 (define-key esc-map "." 'find-tag) | 233 (define-key esc-map "." 'find-tag) |