diff options
author | Tassilo Horn <tsdh@gnu.org> | 2014-01-21 09:26:31 +0100 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2014-01-21 09:26:31 +0100 |
commit | 4ff0a0e5c0577012864a5f3544124c41c86336b1 (patch) | |
tree | b6bb0ce4b2b6b3282382b674074e6a8c2f2029ef /lisp/textmodes/reftex.el | |
parent | e7d807cae81ea3ea843898f9bce28ef2b9debafe (diff) | |
download | emacs-4ff0a0e5c0577012864a5f3544124c41c86336b1.tar.gz |
Fix reftex-create-bibtex-file autoload.
* lisp/textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
specify it's an interactive function.
Diffstat (limited to 'lisp/textmodes/reftex.el')
-rw-r--r-- | lisp/textmodes/reftex.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index d0813687b3b..ec3ab712ce4 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -135,7 +135,9 @@ "Make a citation using BibTeX database files." t) (autoload 'reftex-default-bibliography "reftex-cite") (autoload 'reftex-bib-or-thebib "reftex-cite") -(autoload 'reftex-create-bibtex-file "reftex-cite") +(autoload 'reftex-create-bibtex-file "reftex-cite" + "Create a new BibTeX database BIBFILE with all entries referenced in document." + t) ;; Selection (autoload 'reftex-select-label-mode "reftex-sel") |