Function: eshell-find-tag
eshell-find-tag is an interactive and byte-compiled function defined
in esh-mode.el.gz.
This command is obsolete since 27.1; use xref-find-definition
instead.
Signature
(eshell-find-tag &optional TAGNAME NEXT-P REGEXP-P)
Documentation
A special version of find-tag that ignores whether the text is read-only.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-find-tag (&optional tagname next-p regexp-p)
"A special version of `find-tag' that ignores whether the text is read-only."
(declare (obsolete xref-find-definition "27.1"))
(interactive)
(require 'etags)
(let ((inhibit-read-only t)
(no-default (eobp))
(find-tag-default-function 'ignore))
(setq tagname (car (find-tag-interactive "Find tag" no-default)))
(with-suppressed-warnings ((obsolete find-tag))
(find-tag tagname next-p regexp-p))))