aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2002-10-16 18:37:52 +0000
committerMarkus Rost2002-10-16 18:37:52 +0000
commitf541b8c65f128579537814b59f97c5e95f9f98d8 (patch)
treeb15ef1541610065012c21cb2f88b8cce24346c4b
parenta8c44e3998e5cb382275bf26478b62e4d246522b (diff)
downloademacs-f541b8c65f128579537814b59f97c5e95f9f98d8.tar.gz
emacs-f541b8c65f128579537814b59f97c5e95f9f98d8.zip
Move reftex-set-dirty here from reftex.el.
Move the provide call to end of file.
-rw-r--r--lisp/textmodes/reftex-vars.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el
index 39e2ffc77c6..622bc09b0dd 100644
--- a/lisp/textmodes/reftex-vars.el
+++ b/lisp/textmodes/reftex-vars.el
@@ -26,7 +26,10 @@
26;;; Code: 26;;; Code:
27 27
28(eval-when-compile (require 'cl)) 28(eval-when-compile (require 'cl))
29(provide 'reftex-vars) 29(eval-and-compile
30 (defun reftex-set-dirty (symbol value)
31 (setq reftex-tables-dirty t)
32 (set symbol value)))
30 33
31;; Define the two constants which are needed during compilation 34;; Define the two constants which are needed during compilation
32 35
@@ -1744,4 +1747,6 @@ construct: \\bbb [xxx] {aaa}."
1744 :group 'reftex-miscellaneous-configurations 1747 :group 'reftex-miscellaneous-configurations
1745 :type 'hook) 1748 :type 'hook)
1746 1749
1750(provide 'reftex-vars)
1751
1747;;; reftex-vars.el ends here 1752;;; reftex-vars.el ends here