]> git.eshelyaron.com Git - emacs.git/commitdiff
Move reftex-set-dirty here from reftex.el.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Wed, 16 Oct 2002 18:37:52 +0000 (18:37 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Wed, 16 Oct 2002 18:37:52 +0000 (18:37 +0000)
Move the provide call to end of file.

lisp/textmodes/reftex-vars.el

index 39e2ffc77c68b67ea2121539f71735b9a3e3f29f..622bc09b0dd6ee5ba65dfe4b6a65288c9d45b2ca 100644 (file)
 ;;; 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