branch: externals/org
commit 008b16fc1cfd0f1efdb6314e19d5c8212c2bf3c0
Author: Ihor Radchenko <[email protected]>
Commit: Ihor Radchenko <[email protected]>
Mark all the missing :package-version keywords for changed and new
defcustoms
* lisp/ob-latex.el (org-babel-latex-preamble):
* lisp/ob-lisp.el (org-babel-lisp-dir-fmt):
* lisp/ob-tangle.el (org-babel-tangle-lang-exts):
* lisp/ol.el (org-link-parameters):
(org-link-preview-delay):
(org-link-preview-batch-size):
* lisp/org-capture.el (org-capture-templates):
* lisp/org-keys.el (org-speed-commands):
* lisp/org-plot.el (org-plot/preset-plot-types):
* lisp/org-src.el (org-src-lang-modes):
* lisp/org.el (org-priority-highest):
(org-priority-lowest):
(org-priority-default):
(org-timestamp-custom-formats):
(org-tags-sort-function):
(org-yank-image-save-method):
* lisp/ox-icalendar.el (org-icalendar-with-timestamps):
* lisp/ox.el (org-export-with-timestamps):
---
lisp/ob-latex.el | 1 +
lisp/ob-lisp.el | 2 +-
lisp/ob-tangle.el | 2 +-
lisp/ol.el | 12 +++++++-----
lisp/org-capture.el | 2 +-
lisp/org-keys.el | 2 +-
lisp/org-plot.el | 1 +
lisp/org-src.el | 2 +-
lisp/org.el | 20 ++++++++++++--------
lisp/ox-icalendar.el | 1 +
lisp/ox.el | 1 +
11 files changed, 28 insertions(+), 18 deletions(-)
diff --git a/lisp/ob-latex.el b/lisp/ob-latex.el
index 267c76543a..4136efb598 100644
--- a/lisp/ob-latex.el
+++ b/lisp/ob-latex.el
@@ -82,6 +82,7 @@
It takes 1 argument which is the parameters of the source block."
:group 'org-babel
+ :package-version '(Org . "9.8")
:type 'function)
(defcustom org-babel-latex-begin-env
diff --git a/lisp/ob-lisp.el b/lisp/ob-lisp.el
index 2718785a6b..0b4d741b7a 100644
--- a/lisp/ob-lisp.el
+++ b/lisp/ob-lisp.el
@@ -66,7 +66,7 @@ Valid values include `slime-eval' and `sly-eval'."
For example a value of \"(progn ;; %s\\n %%s)\" would ignore the
current directory string."
:group 'org-babel
- :version "24.1"
+ :package-version '(Org . "9.8")
:type 'string)
(defun org-babel-expand-body:lisp (body params)
diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el
index a6c323af1d..9f2a0270bc 100644
--- a/lisp/ob-tangle.el
+++ b/lisp/ob-tangle.el
@@ -64,7 +64,7 @@ be inserted as the extension commonly used to identify files
written in this language. If no entry is found in this list,
then the name of the language is used."
:group 'org-babel-tangle
- :version "24.1"
+ :package-version '(Org . "9.8")
:type '(repeat
(cons
(string "Language name")
diff --git a/lisp/ol.el b/lisp/ol.el
index 9b5b07b7fb..c83316cbe6 100644
--- a/lisp/ol.el
+++ b/lisp/ol.el
@@ -211,7 +211,7 @@ link.
Face used when hovering over the link. Default is
`highlight'."
:group 'org-link
- :package-version '(Org . "9.1")
+ :package-version '(Org . "9.8")
:type '(alist :tag "Link display parameters"
:value-type plist))
@@ -542,21 +542,23 @@ links more efficient."
:safe #'booleanp)
(defcustom org-link-preview-delay 0.05
- "Idle delay in seconds between link previews when using
-`org-link-preview'. Links are previewed in batches (see
+ "Idle delay in seconds between link previews when using `org-link-preview'.
+Links are previewed in batches (see
`org-link-preview-batch-size') spaced out by this delay. Set
this to a small number for more immediate previews, but at the
expense of higher lag."
:group 'org-link
+ :package-version '(Org . "9.8")
:type 'number)
(defcustom org-link-preview-batch-size 6
- "Number of links that are previewed at once with
-`org-link-preview'. Links are previewed asynchronously, in
+ "Number of links that are previewed at once with `org-link-preview'.
+Links are previewed asynchronously, in
batches spaced out in time (see `org-link-preview-delay'). Set
this to a large integer for more immediate previews, but at the
expense of higher lag."
:group 'org-link
+ :package-version '(Org . "9.8")
:type 'natnum)
(defcustom org-display-remote-inline-images 'skip
diff --git a/lisp/org-capture.el b/lisp/org-capture.el
index f170212be4..3fc99cd13e 100644
--- a/lisp/org-capture.el
+++ b/lisp/org-capture.el
@@ -445,7 +445,7 @@ calendar | %:type %:date
When you need to insert a literal percent sign in the template,
you can escape ambiguous cases with a backward slash, e.g., \\%i."
:group 'org-capture
- :package-version '(Org . "9.7")
+ :package-version '(Org . "9.8")
:set (lambda (s v) (set-default-toplevel-value s
(org-capture-upgrade-templates v)))
:type
(let ((file-variants '(choice :tag "Filename "
diff --git a/lisp/org-keys.el b/lisp/org-keys.el
index dded5f0545..014d64fb53 100644
--- a/lisp/org-keys.el
+++ b/lisp/org-keys.el
@@ -789,7 +789,7 @@ interpreted as a descriptive headline that will be added
when
listing the speed commands in the Help buffer using the `?' speed
command."
:group 'org-structure
- :package-version '(Org . "9.5")
+ :package-version '(Org . "9.8")
:type '(repeat :value ("k" . ignore)
(choice :value ("k" . ignore)
(list :tag "Descriptive Headline" (string :tag
"Headline"))
diff --git a/lisp/org-plot.el b/lisp/org-plot.el
index 6fc66fda50..0199cd4658 100644
--- a/lisp/org-plot.el
+++ b/lisp/org-plot.el
@@ -405,6 +405,7 @@ be set.
Accepts string, nil, or lambda function which returns string
or nil. Defaults to nil."
:group 'org-plot
+ :package-version '(Org . "9.8")
:type 'alist)
(defvar org--plot/radar-template
diff --git a/lisp/org-src.el b/lisp/org-src.el
index 53b44e55e6..181dc5fd36 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -241,7 +241,7 @@ not the case, this variable provides a way to simplify
things on
the user side. For example, there is no `ocaml-mode' in Emacs,
but the mode to use is `tuareg-mode'."
:group 'org-edit-structure
- :package-version '(Org . "9.7")
+ :package-version '(Org . "9.8")
:type '(repeat
(cons
(string :tag "Language name")
diff --git a/lisp/org.el b/lisp/org.el
index 0a4174901e..1b7b45daf5 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -2494,8 +2494,9 @@ smaller than `org-priority-lowest': for example, if \"A\"
is the
highest priority, it is smaller than the lowest \"C\" priority:
65 < 67."
:group 'org-priorities
- :type '(restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
- :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
+ :package-version '(Org . "9.8")
+ :type '( restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
+ :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
(defvaralias 'org-lowest-priority 'org-priority-lowest)
(defcustom org-priority-lowest ?C
@@ -2515,8 +2516,9 @@ than `org-priority-highest': for example, if \"C\" is the
lowest
priority, it is greater than the highest \"A\" priority: 67 >
65."
:group 'org-priorities
- :type '(restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
- :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
+ :package-version '(Org . "9.8")
+ :type '( restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
+ :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
(defvaralias 'org-default-priority 'org-priority-default)
(defcustom org-priority-default ?B
@@ -2530,8 +2532,9 @@ in this range exclusive or inclusive to the range
boundaries. Else the
first step refuses to set the default and the second will fall back on
\(depending on the command used) the highest or lowest priority."
:group 'org-priorities
- :type '(restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
- :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
+ :package-version '(Org . "9.8")
+ :type '( restricted-sexp :tag "Number 0-64 or uppercase character A-Z"
+ :match-alternatives ((lambda (val) (org-priority-valid-value-p val
t)))))
(defcustom org-priority-start-cycle-with-default t
"Non-nil means start with default priority when starting to cycle.
@@ -2622,7 +2625,7 @@ Leading \"<\" or \"[\" and trailing \">\" or \"]\" pair
will be
stripped from the format strings in Emacs buffers. The brackets
will be preserved on export."
:group 'org-time
- :package-version '(Org . "9.6")
+ :package-version '(Org . "9.8")
:type '(cons string string))
(defun org-time-stamp-format (&optional with-time inactive custom)
@@ -3066,6 +3069,7 @@ function in the list.
For an example of a function that uses this advanced sorting system, see
`org-tags-sort-hierarchy'."
:group 'org-tags
+ :package-version '(Org . "9.8")
:type '(choice
(const :tag "Default sorting" nil)
(const :tag "Alphabetical" org-string<)
@@ -20702,7 +20706,7 @@ directory name to copy/cut the image to that directory,
or a
function that will be called without arguments and should return the
directory name, as a string."
:group 'org
- :package-version '(Org . "9.7")
+ :package-version '(Org . "9.8")
:type '(choice (const :tag "Add it as attachment" attach)
(directory :tag "Save it in directory")
(function :tag "Save it in a directory returned from the
function call"))
diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el
index 2862ab1b8d..9fc1e54cb3 100644
--- a/lisp/ox-icalendar.el
+++ b/lisp/ox-icalendar.el
@@ -212,6 +212,7 @@ timestamps isolated in a paragraph containing only
timestamps.
It can also be set with the #+OPTIONS line, e.g. \"<:t\"."
:group 'org-export-icalendar
+ :package-version '(Org . "9.8")
:type '(choice
(const :tag "All timestamps" t)
(const :tag "Active timestamps, including diary timestamps" active)
diff --git a/lisp/ox.el b/lisp/ox.el
index eb26913803..e582ff1f94 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -827,6 +827,7 @@ exported.
This option can also be set with the OPTIONS keyword, e.g.
\"<:nil\"."
:group 'org-export-general
+ :package-version '(Org . "9.8")
:type '(choice
(const :tag "All timestamps" t)
(const :tag "Active timestamps, including diary timestamps" active)