Function: texinfo-current-defun-name
texinfo-current-defun-name is a byte-compiled function defined in
texinfo.el.gz.
Signature
(texinfo-current-defun-name)
Documentation
Return the name of the Texinfo node at point, or nil.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-current-defun-name ()
"Return the name of the Texinfo node at point, or nil."
(save-excursion
(if (re-search-backward "^@node[ \t]+\\([^,\n]+\\)" nil t)
(match-string-no-properties 1))))