Function: texinfo-previous-environment-start
texinfo-previous-environment-start is an interactive and byte-compiled
function defined in texinfo.el.gz.
Signature
(texinfo-previous-environment-start)
Documentation
Move back to the beginning of the previous Texinfo environment.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-previous-environment-start ()
"Move back to the beginning of the previous Texinfo environment."
(interactive)
(while (and (re-search-backward texinfo-environment-regexp nil t)
(save-excursion
(goto-char (match-beginning 0))
(looking-at "@end")))))