]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some reftex custom types
authorGlenn Morris <rgm@gnu.org>
Sat, 6 Oct 2012 20:38:39 +0000 (13:38 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 6 Oct 2012 20:38:39 +0000 (13:38 -0700)
* lisp/textmodes/reftex-vars.el (reftex-create-bibtex-header)
(reftex-create-bibtex-footer): Fix custom types.

lisp/ChangeLog
lisp/textmodes/reftex-vars.el

index 0bd07a9c48d0f85c0d5824dc469443067af6aeef..7bf0f18eb214f4fdcf0a11dc5e6a50a5fec019bd 100644 (file)
@@ -1,5 +1,8 @@
 2012-10-06  Glenn Morris  <rgm@gnu.org>
 
+       * 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.
 
index 264d6e218395fd6629d08882168bf22a94d9297b..2c1fc972057ca6a4b0df8f26e2112c23fbbd52c8 100644 (file)
@@ -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