aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorGlenn Morris2017-12-12 23:21:24 -0800
committerGlenn Morris2017-12-12 23:21:24 -0800
commit52d2a690f66de135fbfbcf5a195014e24be64170 (patch)
tree93fa47b84feb1f851e71fb82bf07a866491e6cc9 /lisp/progmodes
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.
Diffstat (limited to 'lisp/progmodes')
-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
7 files changed, 13 insertions, 0 deletions
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)