emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110397: Fix some reftex custom types


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110397: Fix some reftex custom types
Date: Sat, 06 Oct 2012 13:38:39 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110397
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-10-06 13:38:39 -0700
message:
  Fix some reftex custom types
  
  * lisp/textmodes/reftex-vars.el (reftex-create-bibtex-header)
  (reftex-create-bibtex-footer): Fix custom types.
modified:
  lisp/ChangeLog
  lisp/textmodes/reftex-vars.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-06 20:34:45 +0000
+++ b/lisp/ChangeLog    2012-10-06 20:38:39 +0000
@@ -1,5 +1,8 @@
 2012-10-06  Glenn Morris  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/textmodes/reftex-vars.el'
--- a/lisp/textmodes/reftex-vars.el     2012-10-06 20:30:26 +0000
+++ b/lisp/textmodes/reftex-vars.el     2012-10-06 20:38:39 +0000
@@ -1267,13 +1267,13 @@
   "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
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]