aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-12-12 23:21:24 -0800
committerGlenn Morris2017-12-12 23:21:24 -0800
commit52d2a690f66de135fbfbcf5a195014e24be64170 (patch)
tree93fa47b84feb1f851e71fb82bf07a866491e6cc9
parentf5d036023494dc0d757d062f086a6adb6728f364 (diff)
downloademacs-52d2a690f66de135fbfbcf5a195014e24be64170.tar.gz
emacs-52d2a690f66de135fbfbcf5a195014e24be64170.zip
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.
-rw-r--r--lisp/comint.el1
-rw-r--r--lisp/emacs-lisp/bytecomp.el1
-rw-r--r--lisp/epa.el1
-rw-r--r--lisp/gnus/gnus-cloud.el2
-rw-r--r--lisp/image-dired.el2
-rw-r--r--lisp/net/mailcap.el1
-rw-r--r--lisp/progmodes/cc-vars.el3
-rw-r--r--lisp/progmodes/flymake.el2
-rw-r--r--lisp/progmodes/grep.el1
-rw-r--r--lisp/progmodes/js.el1
-rw-r--r--lisp/progmodes/perl-mode.el1
-rw-r--r--lisp/progmodes/python.el3
-rw-r--r--lisp/progmodes/ruby-mode.el2
-rw-r--r--lisp/textmodes/less-css-mode.el1
-rw-r--r--lisp/textmodes/tex-mode.el2
15 files changed, 24 insertions, 0 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index aa7dab28f32..dcf1ff794f9 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -290,6 +290,7 @@ If `after-input', point will be positioned after the input typed
290by the user, but before the rest of the history entry that has 290by the user, but before the rest of the history entry that has
291been inserted. If `end-of-line', point will be positioned at the 291been inserted. If `end-of-line', point will be positioned at the
292end of the current logical (not visual) line after insertion." 292end of the current logical (not visual) line after insertion."
293 :version "26.1"
293 :type '(radio (const :tag "Stay after input" after-input) 294 :type '(radio (const :tag "Stay after input" after-input)
294 (const :tag "Move to end of line" end-of-line)) 295 (const :tag "Move to end of line" end-of-line))
295 :group 'comint) 296 :group 'comint)
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index f69ac7f342a..d62d8128c11 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -236,6 +236,7 @@ This includes variable references and calls to functions such as `car'."
236 236
237(defcustom byte-compile-cond-use-jump-table t 237(defcustom byte-compile-cond-use-jump-table t
238 "Compile `cond' clauses to a jump table implementation (using a hash-table)." 238 "Compile `cond' clauses to a jump table implementation (using a hash-table)."
239 :version "26.1"
239 :group 'bytecomp 240 :group 'bytecomp
240 :type 'boolean) 241 :type 'boolean)
241 242
diff --git a/lisp/epa.el b/lisp/epa.el
index 6e908e1aa3b..da5a894d804 100644
--- a/lisp/epa.el
+++ b/lisp/epa.el
@@ -40,6 +40,7 @@
40If t, replace the original text without any confirmation. 40If t, replace the original text without any confirmation.
41If nil, don't replace the original text and show the result in a new buffer. 41If nil, don't replace the original text and show the result in a new buffer.
42If neither t nor nil, ask user for confirmation." 42If neither t nor nil, ask user for confirmation."
43 :version "26.1"
43 :type '(choice (const :tag "Never" nil) 44 :type '(choice (const :tag "Never" nil)
44 (const :tag "Ask the user" ask) 45 (const :tag "Ask the user" ask)
45 (const :tag "Always" t)) 46 (const :tag "Always" t))
diff --git a/lisp/gnus/gnus-cloud.el b/lisp/gnus/gnus-cloud.el
index 5ea2d691f15..34d54ec3cae 100644
--- a/lisp/gnus/gnus-cloud.el
+++ b/lisp/gnus/gnus-cloud.el
@@ -51,6 +51,7 @@
51 51
52(defcustom gnus-cloud-storage-method (if (featurep 'epg) 'epg 'base64-gzip) 52(defcustom gnus-cloud-storage-method (if (featurep 'epg) 'epg 'base64-gzip)
53 "Storage method for cloud data, defaults to EPG if that's available." 53 "Storage method for cloud data, defaults to EPG if that's available."
54 :version "26.1"
54 :group 'gnus-cloud 55 :group 'gnus-cloud
55 :type '(radio (const :tag "No encoding" nil) 56 :type '(radio (const :tag "No encoding" nil)
56 (const :tag "Base64" base64) 57 (const :tag "Base64" base64)
@@ -59,6 +60,7 @@
59 60
60(defcustom gnus-cloud-interactive t 61(defcustom gnus-cloud-interactive t
61 "Whether Gnus Cloud changes should be confirmed." 62 "Whether Gnus Cloud changes should be confirmed."
63 :version "26.1"
62 :group 'gnus-cloud 64 :group 'gnus-cloud
63 :type 'boolean) 65 :type 'boolean)
64 66
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 175d9df5e8c..e8046af3c0b 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -305,6 +305,7 @@ temporary file name (typically generated by pnqnq)"
305 305
306(defcustom image-dired-cmd-optipng-program (executable-find "optipng") 306(defcustom image-dired-cmd-optipng-program (executable-find "optipng")
307 "The file name of the `optipng' program." 307 "The file name of the `optipng' program."
308 :version "26.1"
308 :type '(choice (const :tag "Not Set" nil) file) 309 :type '(choice (const :tag "Not Set" nil) file)
309 :group 'image-dired) 310 :group 'image-dired)
310 311
@@ -312,6 +313,7 @@ temporary file name (typically generated by pnqnq)"
312 "Arguments passed to `image-dired-optipng-program'. 313 "Arguments passed to `image-dired-optipng-program'.
313Available format specifiers are described in 314Available format specifiers are described in
314`image-dired-cmd-create-thumbnail-options'." 315`image-dired-cmd-create-thumbnail-options'."
316 :version "26.1"
315 :type '(repeat (string :tag "Argument")) 317 :type '(repeat (string :tag "Argument"))
316 :link '(url-link "man:optipng(1)") 318 :link '(url-link "man:optipng(1)")
317 :group 'image-dired) 319 :group 'image-dired)
diff --git a/lisp/net/mailcap.el b/lisp/net/mailcap.el
index b4b38707c89..be1a171cd48 100644
--- a/lisp/net/mailcap.el
+++ b/lisp/net/mailcap.el
@@ -99,6 +99,7 @@ When selecting a viewer for a given MIME type, the first viewer
99in this list with a matching MIME-TYPE and successful TEST is 99in this list with a matching MIME-TYPE and successful TEST is
100selected. Only if none matches, the standard `mailcap-mime-data' 100selected. Only if none matches, the standard `mailcap-mime-data'
101is consulted." 101is consulted."
102 :version "26.1"
102 :type '(repeat 103 :type '(repeat
103 (list 104 (list
104 (choice (function :tag "Function or mode") 105 (choice (function :tag "Function or mode")
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el
index 51caef2fc30..37d6675821e 100644
--- a/lisp/progmodes/cc-vars.el
+++ b/lisp/progmodes/cc-vars.el
@@ -1643,6 +1643,7 @@ particularly in C++, due to ambiguities in the language. When such a
1643construct is like \"foo * bar\" or \"foo &bar\", and this variable is non-nil 1643construct is like \"foo * bar\" or \"foo &bar\", and this variable is non-nil
1644\(the default), the construct will be fontified as a declaration if there is 1644\(the default), the construct will be fontified as a declaration if there is
1645white space either before or after the operator, but not both." 1645white space either before or after the operator, but not both."
1646 :version "26.1"
1646 :type 'boolean 1647 :type 'boolean
1647 :group 'c) 1648 :group 'c)
1648 1649
@@ -1658,6 +1659,7 @@ identifiers.
1658If you change this variable's value, call the function 1659If you change this variable's value, call the function
1659`c-make-noise-macro-regexps' to set the necessary internal variables (or do 1660`c-make-noise-macro-regexps' to set the necessary internal variables (or do
1660this implicitly by reinitializing C/C++/Objc Mode on any buffer)." 1661this implicitly by reinitializing C/C++/Objc Mode on any buffer)."
1662 :version "26.1"
1661 :type '(repeat :tag "List of names" string) 1663 :type '(repeat :tag "List of names" string)
1662 :group 'c) 1664 :group 'c)
1663(put 'c-noise-macro-names 'safe-local-variable #'c-string-list-p) 1665(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)."
1666 "A list of names of macros \(or compiler extensions like \"__attribute__\") 1668 "A list of names of macros \(or compiler extensions like \"__attribute__\")
1667which optionally have arguments in parentheses, and which expand to nothing. 1669which optionally have arguments in parentheses, and which expand to nothing.
1668These are recognized by CC Mode only in declarations." 1670These are recognized by CC Mode only in declarations."
1671 :version "26.1"
1669 :type '(regexp :tag "List of names (possibly empty)" string) 1672 :type '(regexp :tag "List of names (possibly empty)" string)
1670 :group 'c) 1673 :group 'c)
1671(put 'c-noise-macro-with-parens-names 'safe-local-variable #'c-string-list-p) 1674(put 'c-noise-macro-with-parens-names 'safe-local-variable #'c-string-list-p)
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index c6345aa9680..66d1497b406 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -127,6 +127,7 @@ If nil, never start checking buffer automatically like this."
127(defcustom flymake-start-on-flymake-mode t 127(defcustom flymake-start-on-flymake-mode t
128 "Start syntax check when `flymake-mode' is enabled. 128 "Start syntax check when `flymake-mode' is enabled.
129Specifically, start it when the buffer is actually displayed." 129Specifically, start it when the buffer is actually displayed."
130 :version "26.1"
130 :type 'boolean) 131 :type 'boolean)
131 132
132(define-obsolete-variable-alias 'flymake-start-syntax-check-on-find-file 133(define-obsolete-variable-alias 'flymake-start-syntax-check-on-find-file
@@ -141,6 +142,7 @@ Specifically, start it when the buffer is actually displayed."
141 142
142(defcustom flymake-wrap-around t 143(defcustom flymake-wrap-around t
143 "If non-nil, moving to errors wraps around buffer boundaries." 144 "If non-nil, moving to errors wraps around buffer boundaries."
145 :version "26.1"
144 :type 'boolean) 146 :type 'boolean)
145 147
146(when (fboundp 'define-fringe-bitmap) 148(when (fboundp 'define-fringe-bitmap)
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index c2d80223541..dac3726bb14 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -162,6 +162,7 @@ Customize or call the function `grep-apply-setting'."
162(defcustom grep-use-null-filename-separator 'auto-detect 162(defcustom grep-use-null-filename-separator 'auto-detect
163 "If non-nil, use `grep's `--null' option. 163 "If non-nil, use `grep's `--null' option.
164This is done to disambiguate file names in `grep's output." 164This is done to disambiguate file names in `grep's output."
165 :version "26.1"
165 :type '(choice (const :tag "Do Not Use `--null'" nil) 166 :type '(choice (const :tag "Do Not Use `--null'" nil)
166 (const :tag "Use `--null'" t) 167 (const :tag "Use `--null'" t)
167 (other :tag "Not Set" auto-detect)) 168 (other :tag "Not Set" auto-detect))
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el
index 1f86909362e..5cdabd03beb 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -477,6 +477,7 @@ This applies to function movement, marking, and so on."
477 477
478(defcustom js-indent-align-list-continuation t 478(defcustom js-indent-align-list-continuation t
479 "Align continuation of non-empty ([{ lines in `js-mode'." 479 "Align continuation of non-empty ([{ lines in `js-mode'."
480 :version "26.1"
480 :type 'boolean 481 :type 'boolean
481 :group 'js) 482 :group 'js)
482 483
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index f3cb8109133..fecdb720f58 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -587,6 +587,7 @@ create a new comment."
587This is a non empty list of strings, the checker tool possibly 587This is a non empty list of strings, the checker tool possibly
588followed by required arguments. Once launched it will receive 588followed by required arguments. Once launched it will receive
589the Perl source to be checked as its standard input." 589the Perl source to be checked as its standard input."
590 :version "26.1"
590 :group 'perl 591 :group 'perl
591 :type '(repeat string)) 592 :type '(repeat string))
592 593
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 9d3e428e23c..2de40c4ab88 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -5165,6 +5165,7 @@ This is a non empty list of strings, the checker tool possibly followed by
5165required arguments. Once launched it will receive the Python source to be 5165required arguments. Once launched it will receive the Python source to be
5166checked as its standard input. 5166checked as its standard input.
5167To use `flake8' you would set this to (\"flake8\" \"-\")." 5167To use `flake8' you would set this to (\"flake8\" \"-\")."
5168 :version "26.1"
5168 :group 'python-flymake 5169 :group 'python-flymake
5169 :type '(repeat string)) 5170 :type '(repeat string))
5170 5171
@@ -5186,6 +5187,7 @@ MESSAGE'th gives the message text itself.
5186If COLUMN or TYPE are nil or that index didn't match, that 5187If COLUMN or TYPE are nil or that index didn't match, that
5187information is not present on the matched line and a default will 5188information is not present on the matched line and a default will
5188be used." 5189be used."
5190 :version "26.1"
5189 :group 'python-flymake 5191 :group 'python-flymake
5190 :type '(list regexp 5192 :type '(list regexp
5191 (integer :tag "Line's index") 5193 (integer :tag "Line's index")
@@ -5209,6 +5211,7 @@ For example, when using `flake8' a possible configuration could be:
5209 (\"^[EW][0-9]+\" . :note)) 5211 (\"^[EW][0-9]+\" . :note))
5210 5212
5211By default messages are considered errors." 5213By default messages are considered errors."
5214 :version "26.1"
5212 :group 'python-flymake 5215 :group 'python-flymake
5213 :type `(alist :key-type (regexp) 5216 :type `(alist :key-type (regexp)
5214 :value-type (symbol))) 5217 :value-type (symbol)))
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el
index dc1b0f8e2da..1c7df7e35a2 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -2314,12 +2314,14 @@ See `font-lock-syntax-table'.")
2314(defcustom ruby-flymake-use-rubocop-if-available t 2314(defcustom ruby-flymake-use-rubocop-if-available t
2315 "Non-nil to use the Rubocop Flymake backend. 2315 "Non-nil to use the Rubocop Flymake backend.
2316Only takes effect if Rubocop is installed." 2316Only takes effect if Rubocop is installed."
2317 :version "26.1"
2317 :type 'boolean 2318 :type 'boolean
2318 :group 'ruby 2319 :group 'ruby
2319 :safe 'booleanp) 2320 :safe 'booleanp)
2320 2321
2321(defcustom ruby-rubocop-config ".rubocop.yml" 2322(defcustom ruby-rubocop-config ".rubocop.yml"
2322 "Configuration file for `ruby-flymake-rubocop'." 2323 "Configuration file for `ruby-flymake-rubocop'."
2324 :version "26.1"
2323 :type 'string 2325 :type 'string
2324 :group 'ruby 2326 :group 'ruby
2325 :safe 'stringp) 2327 :safe 'stringp)
diff --git a/lisp/textmodes/less-css-mode.el b/lisp/textmodes/less-css-mode.el
index d31414e3a4b..387d1c2fd57 100644
--- a/lisp/textmodes/less-css-mode.el
+++ b/lisp/textmodes/less-css-mode.el
@@ -78,6 +78,7 @@
78 78
79(defgroup less-css nil 79(defgroup less-css nil
80 "Less CSS mode." 80 "Less CSS mode."
81 :version "26.1"
81 :prefix "less-css-" 82 :prefix "less-css-"
82 :group 'css) 83 :group 'css)
83 84
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 5c585ea46ca..f228e28b740 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -266,12 +266,14 @@ measured relative to that of the normal text."
266 266
267(defcustom tex-chktex-program "chktex" 267(defcustom tex-chktex-program "chktex"
268 "ChkTeX executable to use for linting TeX files." 268 "ChkTeX executable to use for linting TeX files."
269 :version "26.1"
269 :type 'string 270 :type 'string
270 :link '(url-link "man:chktex(1)") 271 :link '(url-link "man:chktex(1)")
271 :group 'tex-flymake) 272 :group 'tex-flymake)
272 273
273(defcustom tex-chktex-extra-flags nil 274(defcustom tex-chktex-extra-flags nil
274 "Extra command line flags for `tex-chktex-program'." 275 "Extra command line flags for `tex-chktex-program'."
276 :version "26.1"
275 :type '(repeat string) 277 :type '(repeat string)
276 :group 'tex-flymake) 278 :group 'tex-flymake)
277 279