aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/reftex-vars.el6
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 823c4831a72..fd46d8b60f4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12006-04-26 Stefan Monnier <monnier@iro.umontreal.ca> 12006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * textmodes/reftex-vars.el (reftex-vref-is-default)
4 (reftex-fref-is-default, reftex-guess-label-type):
5 Tighten up a bit the safety predicate.
6
3 * textmodes/paragraphs.el (sentence-end-double-space) 7 * textmodes/paragraphs.el (sentence-end-double-space)
4 (sentence-end-without-period, sentence-end-without-space) 8 (sentence-end-without-period, sentence-end-without-space)
5 (page-delimiter, paragraph-ignore-fill-prefix): 9 (page-delimiter, paragraph-ignore-fill-prefix):
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el
index 07b5d1ca178..026336c301e 100644
--- a/lisp/textmodes/reftex-vars.el
+++ b/lisp/textmodes/reftex-vars.el
@@ -948,7 +948,7 @@ Instead of nil or t, this may also be a string of type letters indicating
948the label types for which it should be true." 948the label types for which it should be true."
949 :group 'reftex-referencing-labels 949 :group 'reftex-referencing-labels
950 :type `(choice :tag "\\vref is default macro" ,@reftex-tmp)) 950 :type `(choice :tag "\\vref is default macro" ,@reftex-tmp))
951;;;###autoload(put 'reftex-vref-is-default 'safe-local-variable t) 951;;;###autoload(put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
952 952
953(defcustom reftex-fref-is-default nil 953(defcustom reftex-fref-is-default nil
954 "*Non-nil means, the fancyref macro \\fref is used as default. 954 "*Non-nil means, the fancyref macro \\fref is used as default.
@@ -959,7 +959,7 @@ Instead of nil or t, this may also be a string of type letters indicating
959the label types for which it should be true." 959the label types for which it should be true."
960 :group 'reftex-referencing-labels 960 :group 'reftex-referencing-labels
961 :type `(choice :tag "\\fref is default macro" ,@reftex-tmp)) 961 :type `(choice :tag "\\fref is default macro" ,@reftex-tmp))
962;;;###autoload(put 'reftex-fref-is-default 'safe-local-variable t) 962;;;###autoload(put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
963 963
964(defcustom reftex-level-indent 2 964(defcustom reftex-level-indent 2
965 "*Number of spaces to be used for indentation per section level." 965 "*Number of spaces to be used for indentation per section level."
@@ -975,7 +975,7 @@ immediately offer the correct label menu - otherwise it will prompt you for
975a label type. If you set this variable to nil, RefTeX will always prompt." 975a label type. If you set this variable to nil, RefTeX will always prompt."
976 :group 'reftex-referencing-labels 976 :group 'reftex-referencing-labels
977 :type 'boolean) 977 :type 'boolean)
978;;;###autoload(put 'reftex-guess-label-type 'safe-local-variable t) 978;;;###autoload(put 'reftex-guess-label-type 'safe-local-variable 'symbolp)
979 979
980(defcustom reftex-format-ref-function nil 980(defcustom reftex-format-ref-function nil
981 "Function which produces the string to insert as a reference. 981 "Function which produces the string to insert as a reference.