Add missing :version tags revealed by cusver-check
* lisp/comint.el (comint-move-point-for-matching-input): * lisp/epa.el (epa-replace-original-text): * lisp/image-dired.el (image-dired-cmd-optipng-program) (image-dired-cmd-optipng-options): * lisp/emacs-lisp/bytecomp.el (byte-compile-cond-use-jump-table): * lisp/gnus/gnus-cloud.el (gnus-cloud-storage-method) (gnus-cloud-interactive): * lisp/net/mailcap.el (mailcap-user-mime-data): * lisp/progmodes/cc-vars.el (c-asymmetry-fontification-flag) (c-noise-macro-names, c-noise-macro-with-parens-names): * lisp/progmodes/flymake.el (flymake-start-on-flymake-mode) (flymake-wrap-around): * lisp/progmodes/grep.el (grep-use-null-filename-separator): * lisp/progmodes/js.el (js-indent-align-list-continuation): * lisp/progmodes/perl-mode.el (perl-flymake-command): * lisp/progmodes/python.el (python-flymake-command) (python-flymake-command-output-pattern, python-flymake-msg-alist): * lisp/progmodes/ruby-mode.el (ruby-flymake-use-rubocop-if-available) (ruby-rubocop-config): * lisp/textmodes/less-css-mode.el (less-css): * lisp/textmodes/tex-mode.el (tex-chktex-program) (tex-chktex-extra-flags): Add missing :version tags.
This commit is contained in:
parent
f5d0360234
commit
52d2a690f6
15 changed files with 24 additions and 0 deletions
|
@ -290,6 +290,7 @@ If `after-input', point will be positioned after the input typed
|
||||||
by the user, but before the rest of the history entry that has
|
by the user, but before the rest of the history entry that has
|
||||||
been inserted. If `end-of-line', point will be positioned at the
|
been inserted. If `end-of-line', point will be positioned at the
|
||||||
end of the current logical (not visual) line after insertion."
|
end of the current logical (not visual) line after insertion."
|
||||||
|
:version "26.1"
|
||||||
:type '(radio (const :tag "Stay after input" after-input)
|
:type '(radio (const :tag "Stay after input" after-input)
|
||||||
(const :tag "Move to end of line" end-of-line))
|
(const :tag "Move to end of line" end-of-line))
|
||||||
:group 'comint)
|
:group 'comint)
|
||||||
|
|
|
@ -236,6 +236,7 @@ This includes variable references and calls to functions such as `car'."
|
||||||
|
|
||||||
(defcustom byte-compile-cond-use-jump-table t
|
(defcustom byte-compile-cond-use-jump-table t
|
||||||
"Compile `cond' clauses to a jump table implementation (using a hash-table)."
|
"Compile `cond' clauses to a jump table implementation (using a hash-table)."
|
||||||
|
:version "26.1"
|
||||||
:group 'bytecomp
|
:group 'bytecomp
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
If t, replace the original text without any confirmation.
|
If t, replace the original text without any confirmation.
|
||||||
If nil, don't replace the original text and show the result in a new buffer.
|
If nil, don't replace the original text and show the result in a new buffer.
|
||||||
If neither t nor nil, ask user for confirmation."
|
If neither t nor nil, ask user for confirmation."
|
||||||
|
:version "26.1"
|
||||||
:type '(choice (const :tag "Never" nil)
|
:type '(choice (const :tag "Never" nil)
|
||||||
(const :tag "Ask the user" ask)
|
(const :tag "Ask the user" ask)
|
||||||
(const :tag "Always" t))
|
(const :tag "Always" t))
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
|
|
||||||
(defcustom gnus-cloud-storage-method (if (featurep 'epg) 'epg 'base64-gzip)
|
(defcustom gnus-cloud-storage-method (if (featurep 'epg) 'epg 'base64-gzip)
|
||||||
"Storage method for cloud data, defaults to EPG if that's available."
|
"Storage method for cloud data, defaults to EPG if that's available."
|
||||||
|
:version "26.1"
|
||||||
:group 'gnus-cloud
|
:group 'gnus-cloud
|
||||||
:type '(radio (const :tag "No encoding" nil)
|
:type '(radio (const :tag "No encoding" nil)
|
||||||
(const :tag "Base64" base64)
|
(const :tag "Base64" base64)
|
||||||
|
@ -59,6 +60,7 @@
|
||||||
|
|
||||||
(defcustom gnus-cloud-interactive t
|
(defcustom gnus-cloud-interactive t
|
||||||
"Whether Gnus Cloud changes should be confirmed."
|
"Whether Gnus Cloud changes should be confirmed."
|
||||||
|
:version "26.1"
|
||||||
:group 'gnus-cloud
|
:group 'gnus-cloud
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
|
|
|
@ -305,6 +305,7 @@ temporary file name (typically generated by pnqnq)"
|
||||||
|
|
||||||
(defcustom image-dired-cmd-optipng-program (executable-find "optipng")
|
(defcustom image-dired-cmd-optipng-program (executable-find "optipng")
|
||||||
"The file name of the `optipng' program."
|
"The file name of the `optipng' program."
|
||||||
|
:version "26.1"
|
||||||
:type '(choice (const :tag "Not Set" nil) file)
|
:type '(choice (const :tag "Not Set" nil) file)
|
||||||
:group 'image-dired)
|
:group 'image-dired)
|
||||||
|
|
||||||
|
@ -312,6 +313,7 @@ temporary file name (typically generated by pnqnq)"
|
||||||
"Arguments passed to `image-dired-optipng-program'.
|
"Arguments passed to `image-dired-optipng-program'.
|
||||||
Available format specifiers are described in
|
Available format specifiers are described in
|
||||||
`image-dired-cmd-create-thumbnail-options'."
|
`image-dired-cmd-create-thumbnail-options'."
|
||||||
|
:version "26.1"
|
||||||
:type '(repeat (string :tag "Argument"))
|
:type '(repeat (string :tag "Argument"))
|
||||||
:link '(url-link "man:optipng(1)")
|
:link '(url-link "man:optipng(1)")
|
||||||
:group 'image-dired)
|
:group 'image-dired)
|
||||||
|
|
|
@ -99,6 +99,7 @@ When selecting a viewer for a given MIME type, the first viewer
|
||||||
in this list with a matching MIME-TYPE and successful TEST is
|
in this list with a matching MIME-TYPE and successful TEST is
|
||||||
selected. Only if none matches, the standard `mailcap-mime-data'
|
selected. Only if none matches, the standard `mailcap-mime-data'
|
||||||
is consulted."
|
is consulted."
|
||||||
|
:version "26.1"
|
||||||
:type '(repeat
|
:type '(repeat
|
||||||
(list
|
(list
|
||||||
(choice (function :tag "Function or mode")
|
(choice (function :tag "Function or mode")
|
||||||
|
|
|
@ -1643,6 +1643,7 @@ particularly in C++, due to ambiguities in the language. When such a
|
||||||
construct is like \"foo * bar\" or \"foo &bar\", and this variable is non-nil
|
construct is like \"foo * bar\" or \"foo &bar\", and this variable is non-nil
|
||||||
\(the default), the construct will be fontified as a declaration if there is
|
\(the default), the construct will be fontified as a declaration if there is
|
||||||
white space either before or after the operator, but not both."
|
white space either before or after the operator, but not both."
|
||||||
|
:version "26.1"
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:group 'c)
|
:group 'c)
|
||||||
|
|
||||||
|
@ -1658,6 +1659,7 @@ identifiers.
|
||||||
If you change this variable's value, call the function
|
If you change this variable's value, call the function
|
||||||
`c-make-noise-macro-regexps' to set the necessary internal variables (or do
|
`c-make-noise-macro-regexps' to set the necessary internal variables (or do
|
||||||
this implicitly by reinitializing C/C++/Objc Mode on any buffer)."
|
this implicitly by reinitializing C/C++/Objc Mode on any buffer)."
|
||||||
|
:version "26.1"
|
||||||
:type '(repeat :tag "List of names" string)
|
:type '(repeat :tag "List of names" string)
|
||||||
:group 'c)
|
:group 'c)
|
||||||
(put 'c-noise-macro-names 'safe-local-variable #'c-string-list-p)
|
(put 'c-noise-macro-names 'safe-local-variable #'c-string-list-p)
|
||||||
|
@ -1666,6 +1668,7 @@ this implicitly by reinitializing C/C++/Objc Mode on any buffer)."
|
||||||
"A list of names of macros \(or compiler extensions like \"__attribute__\")
|
"A list of names of macros \(or compiler extensions like \"__attribute__\")
|
||||||
which optionally have arguments in parentheses, and which expand to nothing.
|
which optionally have arguments in parentheses, and which expand to nothing.
|
||||||
These are recognized by CC Mode only in declarations."
|
These are recognized by CC Mode only in declarations."
|
||||||
|
:version "26.1"
|
||||||
:type '(regexp :tag "List of names (possibly empty)" string)
|
:type '(regexp :tag "List of names (possibly empty)" string)
|
||||||
:group 'c)
|
:group 'c)
|
||||||
(put 'c-noise-macro-with-parens-names 'safe-local-variable #'c-string-list-p)
|
(put 'c-noise-macro-with-parens-names 'safe-local-variable #'c-string-list-p)
|
||||||
|
|
|
@ -127,6 +127,7 @@ If nil, never start checking buffer automatically like this."
|
||||||
(defcustom flymake-start-on-flymake-mode t
|
(defcustom flymake-start-on-flymake-mode t
|
||||||
"Start syntax check when `flymake-mode' is enabled.
|
"Start syntax check when `flymake-mode' is enabled.
|
||||||
Specifically, start it when the buffer is actually displayed."
|
Specifically, start it when the buffer is actually displayed."
|
||||||
|
:version "26.1"
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(define-obsolete-variable-alias 'flymake-start-syntax-check-on-find-file
|
(define-obsolete-variable-alias 'flymake-start-syntax-check-on-find-file
|
||||||
|
@ -141,6 +142,7 @@ Specifically, start it when the buffer is actually displayed."
|
||||||
|
|
||||||
(defcustom flymake-wrap-around t
|
(defcustom flymake-wrap-around t
|
||||||
"If non-nil, moving to errors wraps around buffer boundaries."
|
"If non-nil, moving to errors wraps around buffer boundaries."
|
||||||
|
:version "26.1"
|
||||||
:type 'boolean)
|
:type 'boolean)
|
||||||
|
|
||||||
(when (fboundp 'define-fringe-bitmap)
|
(when (fboundp 'define-fringe-bitmap)
|
||||||
|
|
|
@ -162,6 +162,7 @@ Customize or call the function `grep-apply-setting'."
|
||||||
(defcustom grep-use-null-filename-separator 'auto-detect
|
(defcustom grep-use-null-filename-separator 'auto-detect
|
||||||
"If non-nil, use `grep's `--null' option.
|
"If non-nil, use `grep's `--null' option.
|
||||||
This is done to disambiguate file names in `grep's output."
|
This is done to disambiguate file names in `grep's output."
|
||||||
|
:version "26.1"
|
||||||
:type '(choice (const :tag "Do Not Use `--null'" nil)
|
:type '(choice (const :tag "Do Not Use `--null'" nil)
|
||||||
(const :tag "Use `--null'" t)
|
(const :tag "Use `--null'" t)
|
||||||
(other :tag "Not Set" auto-detect))
|
(other :tag "Not Set" auto-detect))
|
||||||
|
|
|
@ -477,6 +477,7 @@ This applies to function movement, marking, and so on."
|
||||||
|
|
||||||
(defcustom js-indent-align-list-continuation t
|
(defcustom js-indent-align-list-continuation t
|
||||||
"Align continuation of non-empty ([{ lines in `js-mode'."
|
"Align continuation of non-empty ([{ lines in `js-mode'."
|
||||||
|
:version "26.1"
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:group 'js)
|
:group 'js)
|
||||||
|
|
||||||
|
|
|
@ -587,6 +587,7 @@ create a new comment."
|
||||||
This is a non empty list of strings, the checker tool possibly
|
This is a non empty list of strings, the checker tool possibly
|
||||||
followed by required arguments. Once launched it will receive
|
followed by required arguments. Once launched it will receive
|
||||||
the Perl source to be checked as its standard input."
|
the Perl source to be checked as its standard input."
|
||||||
|
:version "26.1"
|
||||||
:group 'perl
|
:group 'perl
|
||||||
:type '(repeat string))
|
:type '(repeat string))
|
||||||
|
|
||||||
|
|
|
@ -5165,6 +5165,7 @@ This is a non empty list of strings, the checker tool possibly followed by
|
||||||
required arguments. Once launched it will receive the Python source to be
|
required arguments. Once launched it will receive the Python source to be
|
||||||
checked as its standard input.
|
checked as its standard input.
|
||||||
To use `flake8' you would set this to (\"flake8\" \"-\")."
|
To use `flake8' you would set this to (\"flake8\" \"-\")."
|
||||||
|
:version "26.1"
|
||||||
:group 'python-flymake
|
:group 'python-flymake
|
||||||
:type '(repeat string))
|
:type '(repeat string))
|
||||||
|
|
||||||
|
@ -5186,6 +5187,7 @@ MESSAGE'th gives the message text itself.
|
||||||
If COLUMN or TYPE are nil or that index didn't match, that
|
If COLUMN or TYPE are nil or that index didn't match, that
|
||||||
information is not present on the matched line and a default will
|
information is not present on the matched line and a default will
|
||||||
be used."
|
be used."
|
||||||
|
:version "26.1"
|
||||||
:group 'python-flymake
|
:group 'python-flymake
|
||||||
:type '(list regexp
|
:type '(list regexp
|
||||||
(integer :tag "Line's index")
|
(integer :tag "Line's index")
|
||||||
|
@ -5209,6 +5211,7 @@ For example, when using `flake8' a possible configuration could be:
|
||||||
(\"^[EW][0-9]+\" . :note))
|
(\"^[EW][0-9]+\" . :note))
|
||||||
|
|
||||||
By default messages are considered errors."
|
By default messages are considered errors."
|
||||||
|
:version "26.1"
|
||||||
:group 'python-flymake
|
:group 'python-flymake
|
||||||
:type `(alist :key-type (regexp)
|
:type `(alist :key-type (regexp)
|
||||||
:value-type (symbol)))
|
:value-type (symbol)))
|
||||||
|
|
|
@ -2314,12 +2314,14 @@ See `font-lock-syntax-table'.")
|
||||||
(defcustom ruby-flymake-use-rubocop-if-available t
|
(defcustom ruby-flymake-use-rubocop-if-available t
|
||||||
"Non-nil to use the Rubocop Flymake backend.
|
"Non-nil to use the Rubocop Flymake backend.
|
||||||
Only takes effect if Rubocop is installed."
|
Only takes effect if Rubocop is installed."
|
||||||
|
:version "26.1"
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:group 'ruby
|
:group 'ruby
|
||||||
:safe 'booleanp)
|
:safe 'booleanp)
|
||||||
|
|
||||||
(defcustom ruby-rubocop-config ".rubocop.yml"
|
(defcustom ruby-rubocop-config ".rubocop.yml"
|
||||||
"Configuration file for `ruby-flymake-rubocop'."
|
"Configuration file for `ruby-flymake-rubocop'."
|
||||||
|
:version "26.1"
|
||||||
:type 'string
|
:type 'string
|
||||||
:group 'ruby
|
:group 'ruby
|
||||||
:safe 'stringp)
|
:safe 'stringp)
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
|
|
||||||
(defgroup less-css nil
|
(defgroup less-css nil
|
||||||
"Less CSS mode."
|
"Less CSS mode."
|
||||||
|
:version "26.1"
|
||||||
:prefix "less-css-"
|
:prefix "less-css-"
|
||||||
:group 'css)
|
:group 'css)
|
||||||
|
|
||||||
|
|
|
@ -266,12 +266,14 @@ measured relative to that of the normal text."
|
||||||
|
|
||||||
(defcustom tex-chktex-program "chktex"
|
(defcustom tex-chktex-program "chktex"
|
||||||
"ChkTeX executable to use for linting TeX files."
|
"ChkTeX executable to use for linting TeX files."
|
||||||
|
:version "26.1"
|
||||||
:type 'string
|
:type 'string
|
||||||
:link '(url-link "man:chktex(1)")
|
:link '(url-link "man:chktex(1)")
|
||||||
:group 'tex-flymake)
|
:group 'tex-flymake)
|
||||||
|
|
||||||
(defcustom tex-chktex-extra-flags nil
|
(defcustom tex-chktex-extra-flags nil
|
||||||
"Extra command line flags for `tex-chktex-program'."
|
"Extra command line flags for `tex-chktex-program'."
|
||||||
|
:version "26.1"
|
||||||
:type '(repeat string)
|
:type '(repeat string)
|
||||||
:group 'tex-flymake)
|
:group 'tex-flymake)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue