Function: find-tag-default
find-tag-default is a byte-compiled function defined in subr.el.gz.
Signature
(find-tag-default)
Documentation
Determine default tag to search for, based on text at point.
If there is no plausible default, return nil.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun find-tag-default ()
"Determine default tag to search for, based on text at point.
If there is no plausible default, return nil."
(let ((bounds (find-tag-default-bounds)))
(when bounds
(buffer-substring-no-properties (car bounds) (cdr bounds)))))