1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-30 11:09:23 +00:00

Move reftex-set-dirty here from reftex.el.

Move the provide call to end of file.
This commit is contained in:
Markus Rost 2002-10-16 18:37:52 +00:00
parent a8c44e3998
commit f541b8c65f

View File

@ -26,7 +26,10 @@
;;; Code:
(eval-when-compile (require 'cl))
(provide 'reftex-vars)
(eval-and-compile
(defun reftex-set-dirty (symbol value)
(setq reftex-tables-dirty t)
(set symbol value)))
;; Define the two constants which are needed during compilation
@ -1744,4 +1747,6 @@ construct: \\bbb [xxx] {aaa}."
:group 'reftex-miscellaneous-configurations
:type 'hook)
(provide 'reftex-vars)
;;; reftex-vars.el ends here