Function: reftex-reset-scanning-information

reftex-reset-scanning-information is an autoloaded and byte-compiled function defined in reftex.el.gz.

Signature

(reftex-reset-scanning-information)

Documentation

Reset the symbols containing information from buffer scanning.

This enforces rescanning the buffer on next use.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
;;;###autoload
(defun reftex-reset-scanning-information ()
  "Reset the symbols containing information from buffer scanning.
This enforces rescanning the buffer on next use."
  (if (string= reftex-last-toc-master (reftex-TeX-master-file))
      (reftex-erase-buffer "*toc*"))
  (let ((symlist reftex-multifile-symbols)
        symbol)
    (while symlist
      (setq symbol (car symlist)
            symlist (cdr symlist))
      (if (and (symbolp (symbol-value symbol))
               (not (null (symbol-value symbol))))
          (set (symbol-value symbol) nil)))))