diff options
author | Glenn Morris <rgm@gnu.org> | 2017-12-12 23:21:24 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-12-12 23:21:24 -0800 |
commit | 52d2a690f66de135fbfbcf5a195014e24be64170 (patch) | |
tree | 93fa47b84feb1f851e71fb82bf07a866491e6cc9 /lisp/textmodes | |
parent | f5d036023494dc0d757d062f086a6adb6728f364 (diff) | |
download | emacs-52d2a690f66de135fbfbcf5a195014e24be64170.tar.gz |
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/textmodes')
-rw-r--r-- | lisp/textmodes/less-css-mode.el | 1 | ||||
-rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
2 files changed, 3 insertions, 0 deletions
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 @@ (defgroup less-css nil "Less CSS mode." + :version "26.1" :prefix "less-css-" :group 'css) 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." (defcustom tex-chktex-program "chktex" "ChkTeX executable to use for linting TeX files." + :version "26.1" :type 'string :link '(url-link "man:chktex(1)") :group 'tex-flymake) (defcustom tex-chktex-extra-flags nil "Extra command line flags for `tex-chktex-program'." + :version "26.1" :type '(repeat string) :group 'tex-flymake) |