mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
Fix some reftex custom types
* lisp/textmodes/reftex-vars.el (reftex-create-bibtex-header) (reftex-create-bibtex-footer): Fix custom types.
This commit is contained in:
parent
67667c704b
commit
460042b854
@ -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.
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user