From: Tassilo Horn Date: Tue, 21 Jan 2014 08:26:31 +0000 (+0100) Subject: Fix reftex-create-bibtex-file autoload. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~315 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ff0a0e5c0577012864a5f3544124c41c86336b1;p=emacs.git Fix reftex-create-bibtex-file autoload. * lisp/textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to specify it's an interactive function. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8f5ae243eeb..9e84af303a9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2014-01-21 Tassilo Horn + * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to + specify it's an interactive function. + * textmodes/reftex-cite.el (reftex-all-used-citation-keys): Fix regex used for scanning for citation keys which failed for citations with optional arguments. 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")