From: Glenn Morris Date: Sat, 6 Oct 2012 20:38:39 +0000 (-0700) Subject: Fix some reftex custom types X-Git-Tag: emacs-24.2.90~239^2~22 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=460042b854a0b89b445725e046dd4947481c43ce;p=emacs.git Fix some reftex custom types * lisp/textmodes/reftex-vars.el (reftex-create-bibtex-header) (reftex-create-bibtex-footer): Fix custom types. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0bd07a9c48d..7bf0f18eb21 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2012-10-06 Glenn Morris + * textmodes/reftex-vars.el (reftex-create-bibtex-header) + (reftex-create-bibtex-footer): Fix custom types. + * progmodes/sh-script.el (sh-indent-after-continuation): Add explicit :group. diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 264d6e21839..2c1fc972057 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el @@ -1267,13 +1267,13 @@ should return the string to insert into the buffer." "Header to insert in BibTeX files generated by RefTeX." :group 'reftex-citation-support :version "24.3" - :type 'string) + :type '(choice (const :tag "No header" nil) 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) + :type '(choice (const :tag "No footer" nil) string)) ;; Index Support Configuration