Function: reftex-index-region-phrases
reftex-index-region-phrases is an interactive and byte-compiled
function defined in reftex-index.el.gz.
Signature
(reftex-index-region-phrases BEG END)
Documentation
Index all phrases in the phrases buffer.
Calls reftex-index-this-phrase on each line in the region.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-region-phrases (beg end)
"Index all phrases in the phrases buffer.
Calls `reftex-index-this-phrase' on each line in the region."
(interactive "r")
(reftex-index-phrases-parse-header t)
(goto-char beg)
(while (not (or (eobp)
(>= (point) end)))
(save-excursion (reftex-index-this-phrase 'slave))
(beginning-of-line 2)))