浏览代码

Add :version to org-bibtex.el options.

Bastien Guerry 13 年之前
父节点
当前提交
b74be30199
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      lisp/org-bibtex.el

+ 9 - 0
lisp/org-bibtex.el

@@ -216,12 +216,14 @@
 (defcustom org-bibtex-autogen-keys nil
 (defcustom org-bibtex-autogen-keys nil
   "Set to a truth value to use `bibtex-generate-autokey' to generate keys."
   "Set to a truth value to use `bibtex-generate-autokey' to generate keys."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type  'boolean)
   :type  'boolean)
 
 
 (defcustom org-bibtex-prefix nil
 (defcustom org-bibtex-prefix nil
   "Optional prefix for all bibtex property names.
   "Optional prefix for all bibtex property names.
 For example setting to 'BIB_' would allow interoperability with fireforg."
 For example setting to 'BIB_' would allow interoperability with fireforg."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type  'string)
   :type  'string)
 
 
 (defcustom org-bibtex-treat-headline-as-title t
 (defcustom org-bibtex-treat-headline-as-title t
@@ -230,6 +232,7 @@ If an entry is missing a title property, use the headline text as
 the property. If this value is t, `org-bibtex-check' will ignore
 the property. If this value is t, `org-bibtex-check' will ignore
 a missing title field."
 a missing title field."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type 'boolean)
   :type 'boolean)
 
 
 (defcustom org-bibtex-export-arbitrary-fields nil
 (defcustom org-bibtex-export-arbitrary-fields nil
@@ -238,6 +241,7 @@ This only has effect if `org-bibtex-prefix' is defined, so as to
 ensure that other org-properties, such as CATEGORY or LOGGING are
 ensure that other org-properties, such as CATEGORY or LOGGING are
 not placed in the exported bibtex entry."
 not placed in the exported bibtex entry."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type 'boolean)
   :type 'boolean)
 
 
 (defcustom org-bibtex-key-property "CUSTOM_ID"
 (defcustom org-bibtex-key-property "CUSTOM_ID"
@@ -247,11 +251,13 @@ bibtex headlines from within an org file. This can be set to ID
 to enable global links, but only with great caution, as global
 to enable global links, but only with great caution, as global
 IDs must be unique."
 IDs must be unique."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type 'string)
   :type 'string)
 
 
 (defcustom org-bibtex-tags nil
 (defcustom org-bibtex-tags nil
   "List of tag(s) that should be added to new bib entries."
   "List of tag(s) that should be added to new bib entries."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type '(repeat  :tag "Tag" (string)))
   :type '(repeat  :tag "Tag" (string)))
 
 
 (defcustom org-bibtex-tags-are-keywords nil
 (defcustom org-bibtex-tags-are-keywords nil
@@ -266,17 +272,20 @@ comma-separated string of keywords when exported to bibtex. Tags
 defined in `org-bibtex-tags' or `org-bibtex-no-export-tags' will
 defined in `org-bibtex-tags' or `org-bibtex-no-export-tags' will
 not be exported."
 not be exported."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type 'boolean)
   :type 'boolean)
 
 
 (defcustom org-bibtex-no-export-tags nil
 (defcustom org-bibtex-no-export-tags nil
   "List of tag(s) that should not be converted to keywords.
   "List of tag(s) that should not be converted to keywords.
 This variable is relevant only if `org-bibtex-export-tags-as-keywords` is t."
 This variable is relevant only if `org-bibtex-export-tags-as-keywords` is t."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type '(repeat :tag "Tag" (string)))
   :type '(repeat :tag "Tag" (string)))
 
 
 (defcustom org-bibtex-type-property-name "btype"
 (defcustom org-bibtex-type-property-name "btype"
   "Property in which to store bibtex entry type (e.g., article)."
   "Property in which to store bibtex entry type (e.g., article)."
   :group 'org-bibtex
   :group 'org-bibtex
+  :version "24.1"
   :type 'string)
   :type 'string)