Function: reftex-index-Rescan

reftex-index-Rescan is an interactive and byte-compiled function defined in reftex-index.el.gz.

Signature

(reftex-index-Rescan &rest IGNORE)

Documentation

Regenerate the *Index* buffer after reparsing the entire document.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-Rescan (&rest _ignore)
  "Regenerate the *Index* buffer after reparsing the entire document."
  (interactive)
  (let ((index-tag reftex-index-tag)
        (line (+ (count-lines (point-min) (point)) (if (bolp) 1 0))))
    (switch-to-buffer
     (reftex-get-file-buffer-force reftex-last-index-file))
    (setq current-prefix-arg '(16))
    (reftex-display-index index-tag nil 'redo line)))