diff lisp/textmodes/reftex-vars.el @ 47898:c33a2b08adc7

Move reftex-set-dirty here from reftex.el. Move the provide call to end of file.
author Markus Rost <rost@math.uni-bielefeld.de>
date Wed, 16 Oct 2002 18:37:52 +0000
parents 0964618b0e97
children 5ade352e8d1c
line wrap: on
line diff
--- a/lisp/textmodes/reftex-vars.el	Wed Oct 16 15:56:31 2002 +0000
+++ b/lisp/textmodes/reftex-vars.el	Wed Oct 16 18:37:52 2002 +0000
@@ -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 @@
   :group 'reftex-miscellaneous-configurations
   :type 'hook)
 
+(provide 'reftex-vars)
+
 ;;; reftex-vars.el ends here