; Fill in missing :version and :package-version metadata.

This commit is contained in:
Sean Whitton 2026-08-17 12:45:15 +01:00
parent 6dedbb722d
commit d30a86ba2c
13 changed files with 49 additions and 21 deletions

View file

@ -246,13 +246,15 @@ The following specifiers are available:
For example, a value of \"%h%t@mydomain.com\" will generate a UID code For example, a value of \"%h%t@mydomain.com\" will generate a UID code
for each entry composed of a hash of the event data, a creation for each entry composed of a hash of the event data, a creation
timestamp, and your personal domain name." timestamp, and your personal domain name."
:type 'string) :type 'string
:version "31.1")
(defcustom ical:vcalendar-prodid (defcustom ical:vcalendar-prodid
(format "-//gnu.org//GNU Emacs %s//EN" emacs-version) (format "-//gnu.org//GNU Emacs %s//EN" emacs-version)
"The value of the `icalendar-prodid' property for VCALENDAR objects "The value of the `icalendar-prodid' property for VCALENDAR objects
produced by this Emacs." produced by this Emacs."
:type 'string) :type 'string
:version "31.1")
(defconst ical:vcalendar-version "2.0" (defconst ical:vcalendar-version "2.0"
"The current version of the VCALENDAR object, used in the "The current version of the VCALENDAR object, used in the
@ -298,7 +300,8 @@ RFC5545.")
A value of 2 only logs errors. A value of 2 only logs errors.
A value of 1 also logs warnings. A value of 1 also logs warnings.
A value of 0 also logs debugging information." A value of 0 also logs debugging information."
:type 'integer) :type 'integer
:version "31.1")
(defvar icalendar-debug nil (defvar icalendar-debug nil
"Enable icalendar debug messages.") "Enable icalendar debug messages.")

View file

@ -92,7 +92,8 @@ That is to say, the first time during an Emacs session."
(defcustom eshell-after-initialize-hook nil (defcustom eshell-after-initialize-hook nil
"A hook that gets run after an Eshell session has been fully initialized." "A hook that gets run after an Eshell session has been fully initialized."
:type 'hook) :type 'hook
:version "31.1")
(defcustom eshell-exit-hook nil (defcustom eshell-exit-hook nil
"A hook that is run whenever `eshell' is exited. "A hook that is run whenever `eshell' is exited.

View file

@ -171,7 +171,8 @@ message with the same \"Subject\" as B. First element is ignored.")
(defcustom rmail-summary-starting-message 1 (defcustom rmail-summary-starting-message 1
"Message number to start summarizing at." "Message number to start summarizing at."
:type 'integer :type 'integer
:group 'rmail-summary) :group 'rmail-summary
:version "31.1")
(defvar rmail-summary-message-descendants-vector nil (defvar rmail-summary-message-descendants-vector nil
"Vector that holds the direct descendants of each message. "Vector that holds the direct descendants of each message.

View file

@ -112,6 +112,7 @@ The executable can be configured via `org-ditaa-exec'."
(defcustom org-ditaa-java-exec "java" (defcustom org-ditaa-java-exec "java"
"Java executable to use when evaluating ditaa blocks using a JAR." "Java executable to use when evaluating ditaa blocks using a JAR."
:group 'org-babel :group 'org-babel
:package-version '(Org . "9.8")
:type 'string :type 'string
:risky t) :risky t)

View file

@ -144,6 +144,7 @@ detangling, and indentation.
It has no effect if `org-src-preserve-indentation' is non-nil." It has no effect if `org-src-preserve-indentation' is non-nil."
:group 'org-edit-structure :group 'org-edit-structure
:package-version '(Org . "9.8")
:type 'integer :type 'integer
:safe #'wholenump) :safe #'wholenump)

View file

@ -136,17 +136,20 @@ If the element is a function or a list of a function and a number,
(defcustom zone-all-frames nil (defcustom zone-all-frames nil
"When non-nil, zone in all open frames. "When non-nil, zone in all open frames.
Displays the `*zone*' buffer in all windows in all frames." Displays the `*zone*' buffer in all windows in all frames."
:type 'boolean) :type 'boolean
:version "31.1")
(defcustom zone-all-windows-in-frame nil (defcustom zone-all-windows-in-frame nil
"When non-nil, zone in all windows in the current frame." "When non-nil, zone in all windows in the current frame."
:type 'boolean) :type 'boolean
:version "31.1")
(defcustom zone-delete-other-windows nil (defcustom zone-delete-other-windows nil
"When non-nil, make the frame a single window before zoning. "When non-nil, make the frame a single window before zoning.
The original windows and their content will be restored when zoning The original windows and their content will be restored when zoning
completes." completes."
:type 'boolean) :type 'boolean
:version "31.1")
;;;; Hooks to detect the start and finish of zone activity ;;;; Hooks to detect the start and finish of zone activity

View file

@ -417,7 +417,8 @@ end of a rule with negative prefix arg.
Default nil means: `antlr-end-of-rule' jumps to beginning of a Default nil means: `antlr-end-of-rule' jumps to beginning of a
rule, `antlr-end-of-rule' jumps to end of a rule." rule, `antlr-end-of-rule' jumps to end of a rule."
:type 'boolean) :type 'boolean
:version "31.1")
(defcustom antlr-options-use-submenus t (defcustom antlr-options-use-submenus t
"Non-nil, if the major mode menu should include option submenus. "Non-nil, if the major mode menu should include option submenus.
@ -743,7 +744,8 @@ The value might be tool-dependent, see `antlr-tool-version-variables'.")
(defcustom antlr-run-tool-on-buffer-file t ; was nil before 3.2.0 (defcustom antlr-run-tool-on-buffer-file t ; was nil before 3.2.0
"Non-nil, if \\[antlr-run-tool] runs on the file for the current buffer. "Non-nil, if \\[antlr-run-tool] runs on the file for the current buffer.
If nil, the provided tool command must include the file name." If nil, the provided tool command must include the file name."
:type 'boolean) :type 'boolean
:version "31.1")
(defcustom antlr-tool-command nil (defcustom antlr-tool-command nil
"Command used in \\[antlr-run-tool] to run the Antlr tool. "Command used in \\[antlr-run-tool] to run the Antlr tool.
@ -759,20 +761,23 @@ OBSOLETE as user option - customize version dependent user options."
"Command used in \\[antlr-run-tool] to run the Antlr tool. "Command used in \\[antlr-run-tool] to run the Antlr tool.
This variable should include all options passed to Antlr. This variable should include all options passed to Antlr.
Value for `antlr-tool-command' when using ANTLR v4." Value for `antlr-tool-command' when using ANTLR v4."
:type 'string) :type 'string
:version "31.1")
(defcustom antlr-v3-tool-command "java org.antlr.Tool" (defcustom antlr-v3-tool-command "java org.antlr.Tool"
"Command used in \\[antlr-run-tool] to run the Antlr tool. "Command used in \\[antlr-run-tool] to run the Antlr tool.
This variable should include all options passed to Antlr. This variable should include all options passed to Antlr.
Value for `antlr-tool-command' when using ANTLR v3." Value for `antlr-tool-command' when using ANTLR v3."
:type 'string) :type 'string
:version "31.1")
(defcustom antlr-v2-tool-command "java antlr.Tool" (defcustom antlr-v2-tool-command "java antlr.Tool"
"Command used in \\[antlr-run-tool] to run the Antlr tool. "Command used in \\[antlr-run-tool] to run the Antlr tool.
This variable should include all options passed to Antlr except the This variable should include all options passed to Antlr except the
option \"-glib\" which is automatically suggested if necessary. option \"-glib\" which is automatically suggested if necessary.
Value for `antlr-tool-command' when using ANTLR v2." Value for `antlr-tool-command' when using ANTLR v2."
:type 'string) :type 'string
:version "31.1")
(defcustom antlr-ask-about-save t (defcustom antlr-ask-about-save t
"If not nil, \\[antlr-run-tool] asks which buffers to save. "If not nil, \\[antlr-run-tool] asks which buffers to save.

View file

@ -982,7 +982,8 @@ Elements in this list will be searched before those in
The buffer-local value of this variable will be inherited by the The buffer-local value of this variable will be inherited by the
compilation buffer." compilation buffer."
:type '(repeat (string :tag "Directory"))) :type '(repeat (string :tag "Directory"))
:version "31.1")
;;;###autoload ;;;###autoload
(defcustom compile-command (defcustom compile-command

View file

@ -656,7 +656,8 @@ compilation and evaluation time conflicts."
"Number of spaces for each indentation step in `csharp-ts-mode'." "Number of spaces for each indentation step in `csharp-ts-mode'."
:type 'integer :type 'integer
:safe 'integerp :safe 'integerp
:group 'csharp) :group 'csharp
:version "31.1")
(defvar csharp-ts-mode--indent-rules (defvar csharp-ts-mode--indent-rules
`((c-sharp `((c-sharp

View file

@ -187,7 +187,8 @@
("1.12" . "29.2") ("1.12" . "29.2")
("1.12" . "29.3") ("1.12" . "29.3")
("1.12.29" . "29.4") ("1.12.29" . "29.4")
("1.17.30" . "30.1"))) ("1.17.30" . "30.1")
("1.24.31" . "31.1")))
(defun eglot-alternatives (alternatives) (defun eglot-alternatives (alternatives)
"Compute server-choosing function for `eglot-server-programs'. "Compute server-choosing function for `eglot-server-programs'.
@ -601,7 +602,8 @@ This is done by sending an additional '$/cancelRequest' notification
every time Eglot decides to forget a request. The effect of this every time Eglot decides to forget a request. The effect of this
notification is implementation defined, and is only useful for some notification is implementation defined, and is only useful for some
servers." servers."
:type 'boolean) :type 'boolean
:package-version '(Eglot . "1.22"))
(defface eglot-code-action-indicator-face (defface eglot-code-action-indicator-face
'((t (:inherit warning :weight bold))) '((t (:inherit warning :weight bold)))
@ -5409,11 +5411,13 @@ initial delay and repeat rate, and may not be 100% accurate."
(defcustom eglot-semantic-token-types (defcustom eglot-semantic-token-types
',types "LSP-supplied semantic types Eglot should consider." ',types "LSP-supplied semantic types Eglot should consider."
:type '(set ,@(mapcar (lambda (o) `(const ,o)) types)) :type '(set ,@(mapcar (lambda (o) `(const ,o)) types))
:group 'eglot-semantic-fontification) :group 'eglot-semantic-fontification
:package-version '(Eglot . "1.20"))
(defcustom eglot-semantic-token-modifiers (defcustom eglot-semantic-token-modifiers
',modifiers "LSP-supplied semantic modifiers Eglot should consider." ',modifiers "LSP-supplied semantic modifiers Eglot should consider."
:type '(set ,@(mapcar (lambda (o) `(const ,o)) modifiers)) :type '(set ,@(mapcar (lambda (o) `(const ,o)) modifiers))
:group 'eglot-semantic-fontification))))) :group 'eglot-semantic-fontification
:package-version '(Eglot . "1.20"))))))
(eglot--semtok-define-things) (eglot--semtok-define-things)

View file

@ -131,7 +131,8 @@
(add-to-list 'customize-package-emacs-version-alist (add-to-list 'customize-package-emacs-version-alist
'(Flymake ("1.3.4" . "30.1") '(Flymake ("1.3.4" . "30.1")
("1.3.5" . "30.1") ("1.3.5" . "30.1")
("1.3.6" . "30.1"))) ("1.3.6" . "30.1")
("1.4.6" . "31.1")))
(defcustom flymake-error-bitmap '(flymake-double-exclamation-mark (defcustom flymake-error-bitmap '(flymake-double-exclamation-mark
flymake-error-fringe) flymake-error-fringe)

View file

@ -113,7 +113,8 @@ specify nil for this variable."
When non-nil, the first menu-entry's character that acts as a shortcut When non-nil, the first menu-entry's character that acts as a shortcut
is displayed with the `highlight' face to help identify it. The is displayed with the `highlight' face to help identify it. The
`tmm-mid-prompt' string is not used then." `tmm-mid-prompt' string is not used then."
:type 'boolean) :type 'boolean
:version "31.1")
(defface tmm-inactive (defface tmm-inactive
'((t :inherit shadow)) '((t :inherit shadow))

View file

@ -51,6 +51,9 @@
(eval-when-compile (require 'subr-x)) (eval-when-compile (require 'subr-x))
(add-to-list 'customize-package-emacs-version-alist
'(transient ("0.13.3" . "31.1")))
(declare-function info "info" (&optional file-or-node buffer)) (declare-function info "info" (&optional file-or-node buffer))
(declare-function Man-find-section "man" (section)) (declare-function Man-find-section "man" (section))
(declare-function Man-next-section "man" (n)) (declare-function Man-next-section "man" (n))
@ -2236,6 +2239,8 @@ For historic reasons \\`C-x' is used by default, but users are
encouraged to pick another key, preferably one that is not commonly used encouraged to pick another key, preferably one that is not commonly used
in Emacs but is still convenient to them. See info node `(transient) in Emacs but is still convenient to them. See info node `(transient)
Common Suffix Commands'." Common Suffix Commands'."
:package-version '(transient . "0.8.8")
:group 'transient
:type 'key :type 'key
:initialize (lambda (symbol exp) :initialize (lambda (symbol exp)
(custom-initialize-default symbol exp) (custom-initialize-default symbol exp)