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