Function: reftex-check-recursive-edit
reftex-check-recursive-edit is a byte-compiled function defined in
reftex.el.gz.
Signature
(reftex-check-recursive-edit)
Documentation
Check if we are already in a recursive edit.
Abort with helpful message if so.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-check-recursive-edit ()
"Check if we are already in a recursive edit.
Abort with helpful message if so."
(if (marker-position reftex-recursive-edit-marker)
(error
(substitute-command-keys
"In unfinished selection process. Finish, or abort with \\[abort-recursive-edit]"))))