summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2017-09-07 16:56:11 -0400
committerKyle Meyer <kyle@kyleam.com>2017-09-07 16:56:11 -0400
commit6496d0ca956b91de7204989111db826644eaac30 (patch)
treed4f734451c99d4d4358161a37b6dc66b4dc774f5
parent7a29c82e1100f0e0e5c1c8d8b276139358abb031 (diff)
downloadorg-mode-6496d0ca956b91de7204989111db826644eaac30.tar.gz
Correct defcustom version information
* lisp/ob-lilypond.el (org-babel-lilypond-commands): * lisp/ob-lua.el (org-babel-lua-command): (org-babel-lua-mode): (org-babel-lua-hline-to): (org-babel-lua-None-to): * lisp/org-agenda.el (org-agenda-search-view-max-outline-level): * lisp/org.el (org-mouse-1-follows-link): (org-src-fontify-natively): (orgstruct-heading-prefix-regexp): * lisp/ox-ascii.el (org-ascii-format-inlinetask-function): * lisp/ox-latex.el (org-latex-format-drawer-function): (org-latex-listings-langs): * lisp/ox-odt.el (org-odt-format-drawer-function): * lisp/ox.el (org-export-with-properties): Correct ":version" value. * lisp/org-attach.el (org-attach-annex-auto-get): Correct ":package-version" value.
-rw-r--r--lisp/ob-lilypond.el2
-rw-r--r--lisp/ob-lua.el8
-rw-r--r--lisp/org-agenda.el2
-rw-r--r--lisp/org-attach.el2
-rw-r--r--lisp/org.el6
-rw-r--r--lisp/ox-ascii.el2
-rw-r--r--lisp/ox-latex.el4
-rw-r--r--lisp/ox-odt.el2
-rw-r--r--lisp/ox.el2
9 files changed, 15 insertions, 15 deletions
diff --git a/lisp/ob-lilypond.el b/lisp/ob-lilypond.el
index 37a7a6b..e064aab 100644
--- a/lisp/ob-lilypond.el
+++ b/lisp/ob-lilypond.el
@@ -89,7 +89,7 @@ you can leave the string empty on this case."
(string :tag "Lilypond ")
(string :tag "PDF Viewer ")
(string :tag "MIDI Player"))
- :version "24.3"
+ :version "24.4"
:package-version '(Org . "8.2.7")
:set
(lambda (_symbol value)
diff --git a/lisp/ob-lua.el b/lisp/ob-lua.el
index 877d895..ac0ef80 100644
--- a/lisp/ob-lua.el
+++ b/lisp/ob-lua.el
@@ -49,7 +49,7 @@
(defcustom org-babel-lua-command "lua"
"Name of the command for executing Lua code."
- :version "24.5"
+ :version "26.1"
:package-version '(Org . "8.3")
:group 'org-babel
:type 'string)
@@ -58,21 +58,21 @@
"Preferred lua mode for use in running lua interactively.
This will typically be 'lua-mode."
:group 'org-babel
- :version "24.5"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'symbol)
(defcustom org-babel-lua-hline-to "None"
"Replace hlines in incoming tables with this when translating to lua."
:group 'org-babel
- :version "24.5"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'string)
(defcustom org-babel-lua-None-to 'hline
"Replace 'None' in lua tables with this before returning."
:group 'org-babel
- :version "24.5"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'symbol)
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 76bfa90..7f3fec4 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -1445,7 +1445,7 @@ E.g. when this is set to 1, the search view will only
show headlines of level 1. When set to 0, the default
value, don't limit agenda view by outline level."
:group 'org-agenda-search-view
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'integer)
diff --git a/lisp/org-attach.el b/lisp/org-attach.el
index 1249de7..1dccd1e 100644
--- a/lisp/org-attach.el
+++ b/lisp/org-attach.el
@@ -144,7 +144,7 @@ When set to `query', ask the user instead."
"Confirmation preference for automatically getting annex files.
If \\='ask, prompt using `y-or-n-p'. If t, always get. If nil, never get."
:group 'org-attach
- :package-version '(Org . "9")
+ :package-version '(Org . "9.0")
:version "26.1"
:type '(choice
(const :tag "confirm with `y-or-n-p'" ask)
diff --git a/lisp/org.el b/lisp/org.el
index 3d81794..3ec83ac 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -2053,7 +2053,7 @@ In tables, the special behavior of RET has precedence."
A longer mouse click will still set point. Needs to be set
before org.el is loaded."
:group 'org-link-follow
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type '(choice
(const :tag "A double click follows the link" double)
@@ -5903,7 +5903,7 @@ This includes angle, plain, and bracket links."
"When non-nil, fontify code in code blocks.
See also the `org-block' face."
:type 'boolean
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:group 'org-appearance
:group 'org-babel)
@@ -9065,7 +9065,7 @@ function is being called interactively."
"Regexp that matches the custom prefix of Org headlines in
orgstruct(++)-mode."
:group 'org
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'regexp)
;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el
index f819250..71d3d7d 100644
--- a/lisp/ox-ascii.el
+++ b/lisp/ox-ascii.el
@@ -401,7 +401,7 @@ The function must accept nine parameters:
The function should return either the string to be exported or
nil to ignore the inline task."
:group 'org-export-ascii
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'function)
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 12f6b9e..e3d32f2 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -865,7 +865,7 @@ The function should return the string to be exported.
The default function simply returns the value of CONTENTS."
:group 'org-export-latex
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'function)
@@ -956,7 +956,7 @@ parameter for the listings package. If the mode name and the
listings name are the same, the language does not need an entry
in this list - but it does not hurt if it is present."
:group 'org-export-latex
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type '(repeat
(list
diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index ac9df27..8846aba 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -656,7 +656,7 @@ The function should return the string to be exported.
The default value simply returns the value of CONTENTS."
:group 'org-export-odt
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type 'function)
diff --git a/lisp/ox.el b/lisp/ox.el
index c96eb6e..b6528d9 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -594,7 +594,7 @@ properties to export, as strings.
This option can also be set with the OPTIONS keyword,
e.g. \"prop:t\"."
:group 'org-export-general
- :version "24.4"
+ :version "26.1"
:package-version '(Org . "8.3")
:type '(choice
(const :tag "All properties" t)