Function: reftex-kill-emacs-hook
reftex-kill-emacs-hook is a byte-compiled function defined in
reftex.el.gz.
Signature
(reftex-kill-emacs-hook)
Documentation
Call reftex-kill-buffer-hook on all buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-kill-emacs-hook ()
"Call `reftex-kill-buffer-hook' on all buffers."
;; This function should be installed in `kill-emacs-hook'.
(save-excursion
(mapcar (lambda (buf)
(set-buffer buf)
(reftex-kill-buffer-hook))
(buffer-list))))