diff options
Diffstat (limited to 'lisp/textmodes/reftex-vars.el')
-rw-r--r-- | lisp/textmodes/reftex-vars.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index df3d729adca..264d6e21839 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -968,6 +968,7 @@ the macro type is being prompted for. (See also `reftex-ref-macro-prompt'.) The keys, represented as characters, have to be unique." :group 'reftex-referencing-labels + :version "24.3" :type '(alist :key-type (string :tag "Style name") :value-type (group (choice :tag "Package" (const :tag "Any package" t) @@ -979,6 +980,7 @@ have to be unique." (defcustom reftex-ref-macro-prompt t "If non-nil, `reftex-reference' prompts for the reference macro." :group 'reftex-referencing-labels + :version "24.3" :type 'boolean) (defcustom reftex-vref-is-default nil @@ -1014,6 +1016,7 @@ can be cycled in the buffer for selecting a label. The entries in the list have to match the respective reference style names used in the variable `reftex-ref-style-alist'." :group 'reftex-referencing-labels + :version "24.3" :type `(set ,@(mapcar (lambda (x) (list 'const (car x))) reftex-ref-style-alist))) @@ -1257,16 +1260,19 @@ should return the string to insert into the buffer." (defcustom reftex-cite-key-separator "," "String to be used for separating several keys in a \\cite macro." :group 'reftex-citation-support + :version "24.3" :type 'string) (defcustom reftex-create-bibtex-header nil "Header to insert in BibTeX files generated by RefTeX." :group 'reftex-citation-support + :version "24.3" :type 'string) (defcustom reftex-create-bibtex-footer nil "Footer to insert in BibTeX files generated by RefTeX." :group 'reftex-citation-support + :version "24.3" :type 'string) ;; Index Support Configuration |