Function: find-tag-default-bounds
find-tag-default-bounds is a byte-compiled function defined in
subr.el.gz.
Signature
(find-tag-default-bounds)
Documentation
Determine the boundaries of the default tag, based on text at point.
Return a cons cell with the beginning and end of the found tag. If there is no plausible default, return nil.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun find-tag-default-bounds ()
"Determine the boundaries of the default tag, based on text at point.
Return a cons cell with the beginning and end of the found tag.
If there is no plausible default, return nil."
(bounds-of-thing-at-point 'symbol))