Function: reftex-with-special-syntax-for-bib
reftex-with-special-syntax-for-bib is a macro defined in
reftex-cite.el.gz.
Signature
(reftex-with-special-syntax-for-bib &rest BODY)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-cite.el.gz
;;; Find bibtex files
(defmacro reftex-with-special-syntax-for-bib (&rest body)
`(let ((saved-syntax (syntax-table)))
(unwind-protect
(progn
(set-syntax-table reftex-syntax-table-for-bib)
,@body)
(set-syntax-table saved-syntax))))