From: Glenn Morris Date: Fri, 10 Feb 2012 08:23:33 +0000 (-0800) Subject: Add missing defcustom :version tags X-Git-Tag: emacs-pretest-24.0.94~195 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2096d7233abe5f3177c28c1f8578acff5e80f7f;p=emacs.git Add missing defcustom :version tags * lisp/textmodes/bibtex.el: Add missing :version tags for new/changed defcustoms. * etc/NEWS: Related edits. --- diff --git a/etc/NEWS b/etc/NEWS index d7491b7560b..407f1edeaf6 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -594,18 +594,16 @@ region (or with the left margin if there is no previous line). +++ ** Archive Mode has basic support for browsing and updating 7z archives. ---- ** BibTeX mode - +--- *** BibTeX mode now supports biblatex. -Use the variable bibtex-dialect to select support for different BibTeX -dialects. bibtex-entry-field-alist is now an obsolete alias for -bibtex-BibTeX-entry-alist. - +Use the variable bibtex-dialect to select different BibTeX dialects. +bibtex-entry-field-alist is now an obsolete alias forbibtex-BibTeX-entry-alist. +--- *** New command `bibtex-search-entries' bound to C-c C-a. - +--- *** New `bibtex-entry-format' option `sort-fields', disabled by default. - +--- *** New variable `bibtex-search-entry-globally'. ** Calendar, Diary, and Appt diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 41728f0b997..69d32b4725a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2012-02-10 Glenn Morris + * textmodes/bibtex.el: + Add missing :version tags for new/changed defcustoms. + * files.el (remote-file-name-inhibit-cache): Doc fixes. 2012-02-09 Lars Ingebrigtsen diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index e9dea3dd4ec..a873680a8c8 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -443,6 +443,7 @@ which is called to determine the initial content of the field. ALTERNATIVE if non-nil is an integer that numbers sets of alternatives, starting from zero." :group 'BibTeX + :version "24.1" :type 'bibtex-entry-alist) (put 'bibtex-BibTeX-entry-alist 'risky-local-variable t) @@ -696,6 +697,7 @@ alternatives, starting from zero." "Alist of biblatex entry types and their associated fields. It has the same format as `bibtex-BibTeX-entry-alist'." :group 'bibtex + :version "24.1" :type 'bibtex-entry-alist) (put 'bibtex-biblatex-entry-alist 'risky-local-variable t) @@ -717,6 +719,7 @@ It has the same format as `bibtex-BibTeX-entry-alist'." Each element is a list (FIELD COMMENT). COMMENT is used as a default if `bibtex-BibTeX-entry-alist' does not define a comment for FIELD." :group 'bibtex + :version "24.1" :type 'bibtex-field-alist) (defcustom bibtex-biblatex-field-alist @@ -814,6 +817,7 @@ if `bibtex-BibTeX-entry-alist' does not define a comment for FIELD." "Alist of biblatex fields. It has the same format as `bibtex-BibTeX-entry-alist'." :group 'bibtex + :version "24.1" :type 'bibtex-field-alist) (defcustom bibtex-dialect-list '(BibTeX biblatex) @@ -822,12 +826,14 @@ For each DIALECT (a symbol) a variable bibtex-DIALECT-entry-alist defines the allowed entries and bibtex-DIALECT-field-alist defines known field types. Predefined dialects include BibTeX and biblatex." :group 'bibtex + :version "24.1" :type '(repeat (symbol :tag "Dialect"))) (defcustom bibtex-dialect 'BibTeX "Current BibTeX dialect. For allowed values see `bibtex-dialect-list'. To interactively change the dialect use the command `bibtex-set-dialect'." :group 'bibtex + :version "24.1" :set '(lambda (symbol value) (set-default symbol value) ;; `bibtex-set-dialect' is undefined during loading (no problem) @@ -842,6 +848,7 @@ To interactively change the dialect use the command `bibtex-set-dialect'." "If a field name matches this regexp, the prefix OPT is not removed. If nil prefix OPT is always removed" :group 'bibtex + :version "24.1" :type '(choice (regexp) (const nil))) (defcustom bibtex-comment-start "@Comment" @@ -930,6 +937,7 @@ See also `bibtex-search-entry-globally'." "If non-nil, interactive calls of `bibtex-search-entry' search globally. A global search includes all files in `bibtex-files'." :group 'bibtex + :version "24.1" :type 'boolean) (defcustom bibtex-help-message t @@ -1291,6 +1299,7 @@ Set this variable before loading BibTeX mode." (defcustom bibtex-search-buffer "*BibTeX Search*" "Buffer for BibTeX search results." :group 'bibtex + :version "24.1" :type 'string) ;; `bibtex-font-lock-keywords' is a user option, too. But since the