Function: reftex-toc-toggle-context
reftex-toc-toggle-context is an interactive and byte-compiled function
defined in reftex-toc.el.gz.
Signature
(reftex-toc-toggle-context)
Documentation
Toggle inclusion of label context in *toc* buffer.
Label context is only displayed when the labels are there as well.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-toggle-context ()
"Toggle inclusion of label context in *toc* buffer.
Label context is only displayed when the labels are there as well."
(interactive)
(setq reftex-toc-include-context (not reftex-toc-include-context))
(reftex-toc-revert))