aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2016-01-12 20:06:49 -0500
committerGlenn Morris2016-01-12 20:06:49 -0500
commite85e0d5951bd4e6e69beec1301113f5f9b48f81d (patch)
treecaa6c89ab18587b3ca2849fc7cf6789a9ff6a17b /lisp
parent0ae1a144a83cbfe8bba1abb295ece69c4dcff5f7 (diff)
downloademacs-e85e0d5951bd4e6e69beec1301113f5f9b48f81d.tar.gz
emacs-e85e0d5951bd4e6e69beec1301113f5f9b48f81d.zip
Add some missing version tags.
* lisp/electric.el (electric-quote-comment) (electric-quote-string, electric-quote-paragraph): * lisp/epg-config.el (epg-gpgconf-program): * lisp/rect.el (rectangle-preview): * lisp/emacs-lisp/check-declare.el (check-declare-ext-errors): * lisp/emacs-lisp/package.el (package-selected-packages) (package-hidden-regexps): * lisp/erc/erc.el (erc-network-hide-list, erc-channel-hide-list): * lisp/eshell/em-term.el (eshell-destroy-buffer-when-process-dies): * lisp/gnus/mml-sec.el (mml1991-signers, mml2015-signers) (mml-smime-signers, mml1991-encrypt-to-self, mml2015-encrypt-to-self) (mml-smime-encrypt-to-self, mml2015-sign-with-sender) (mml-smime-sign-with-sender, mml2015-always-trust) (mml-secure-fail-when-key-problem, mml-secure-key-preferences): * lisp/net/browse-url.el (browse-url-conkeror-new-window-is-buffer) (browse-url-conkeror-arguments): * lisp/net/newst-reader.el (newsticker-download-logos): * lisp/progmodes/gud.el (gud-guiler-command-name): * lisp/progmodes/prog-mode.el (prettify-symbols-unprettify-at-point): * lisp/progmodes/project.el (project-vc): * lisp/progmodes/python.el (python-indent-guess-indent-offset-verbose) (python-shell-remote-exec-path, python-shell-first-prompt-hook) (python-shell-completion-native-disabled-interpreters) (python-shell-completion-native-enable) (python-shell-completion-native-output-timeout) (python-shell-completion-native-try-output-timeout): * lisp/progmodes/xref.el (xref): * lisp/term/screen.el (xterm-screen-extra-capabilities): * lisp/term/xterm.el (xterm-max-cut-length): Add missing version tags.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/electric.el3
-rw-r--r--lisp/emacs-lisp/check-declare.el1
-rw-r--r--lisp/emacs-lisp/package.el2
-rw-r--r--lisp/epg-config.el1
-rw-r--r--lisp/erc/erc.el6
-rw-r--r--lisp/eshell/em-term.el1
-rw-r--r--lisp/gnus/mml-sec.el23
-rw-r--r--lisp/net/browse-url.el2
-rw-r--r--lisp/net/newst-reader.el1
-rw-r--r--lisp/progmodes/gud.el1
-rw-r--r--lisp/progmodes/prog-mode.el1
-rw-r--r--lisp/progmodes/project.el3
-rw-r--r--lisp/progmodes/python.el7
-rw-r--r--lisp/progmodes/xref.el1
-rw-r--r--lisp/rect.el1
-rw-r--r--lisp/term/screen.el1
-rw-r--r--lisp/term/xterm.el1
17 files changed, 44 insertions, 12 deletions
diff --git a/lisp/electric.el b/lisp/electric.el
index abddd986ef8..ab79943c9dd 100644
--- a/lisp/electric.el
+++ b/lisp/electric.el
@@ -417,14 +417,17 @@ The variable `electric-layout-rules' says when and how to insert newlines."
417 417
418(defcustom electric-quote-comment t 418(defcustom electric-quote-comment t
419 "Non-nil means to use electric quoting in program comments." 419 "Non-nil means to use electric quoting in program comments."
420 :version "25.1"
420 :type 'boolean :safe 'booleanp :group 'electricity) 421 :type 'boolean :safe 'booleanp :group 'electricity)
421 422
422(defcustom electric-quote-string nil 423(defcustom electric-quote-string nil
423 "Non-nil means to use electric quoting in program strings." 424 "Non-nil means to use electric quoting in program strings."
425 :version "25.1"
424 :type 'boolean :safe 'booleanp :group 'electricity) 426 :type 'boolean :safe 'booleanp :group 'electricity)
425 427
426(defcustom electric-quote-paragraph t 428(defcustom electric-quote-paragraph t
427 "Non-nil means to use electric quoting in text paragraphs." 429 "Non-nil means to use electric quoting in text paragraphs."
430 :version "25.1"
428 :type 'boolean :safe 'booleanp :group 'electricity) 431 :type 'boolean :safe 'booleanp :group 'electricity)
429 432
430(defun electric--insertable-p (string) 433(defun electric--insertable-p (string)
diff --git a/lisp/emacs-lisp/check-declare.el b/lisp/emacs-lisp/check-declare.el
index 513aa319798..b6fa0546088 100644
--- a/lisp/emacs-lisp/check-declare.el
+++ b/lisp/emacs-lisp/check-declare.el
@@ -131,6 +131,7 @@ With optional argument FULL, sums the number of elements in each element."
131 131
132(defcustom check-declare-ext-errors nil 132(defcustom check-declare-ext-errors nil
133 "When non-nil, warn about functions not found in :ext." 133 "When non-nil, warn about functions not found in :ext."
134 :version "25.1"
134 :type 'boolean) 135 :type 'boolean)
135 136
136(defun check-declare-verify (fnfile fnlist) 137(defun check-declare-verify (fnfile fnlist)
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index a06b7ef012e..fbc8be482a2 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -328,6 +328,7 @@ by running `package-install-selected-packages'.
328To check if a package is contained in this list here, use 328To check if a package is contained in this list here, use
329`package--user-selected-p', as it may populate the variable with 329`package--user-selected-p', as it may populate the variable with
330a sane initial value." 330a sane initial value."
331 :version "25.1"
331 :type '(repeat symbol)) 332 :type '(repeat symbol))
332 333
333(defcustom package-menu-async t 334(defcustom package-menu-async t
@@ -2653,6 +2654,7 @@ omitted from the package menu. To toggle this, type \\[package-menu-toggle-hidi
2653 2654
2654Values can be interactively added to this list by typing 2655Values can be interactively added to this list by typing
2655\\[package-menu-hide-package] on a package" 2656\\[package-menu-hide-package] on a package"
2657 :version "25.1"
2656 :type '(repeat (regexp :tag "Hide packages with name matching"))) 2658 :type '(repeat (regexp :tag "Hide packages with name matching")))
2657 2659
2658(defun package-menu--refresh (&optional packages keywords) 2660(defun package-menu--refresh (&optional packages keywords)
diff --git a/lisp/epg-config.el b/lisp/epg-config.el
index 5fac079d3c0..e92bcd62a66 100644
--- a/lisp/epg-config.el
+++ b/lisp/epg-config.el
@@ -53,6 +53,7 @@
53 53
54(defcustom epg-gpgconf-program "gpgconf" 54(defcustom epg-gpgconf-program "gpgconf"
55 "The `gpgconf' executable." 55 "The `gpgconf' executable."
56 :version "25.1"
56 :group 'epg 57 :group 'epg
57 :type 'string) 58 :type 'string)
58 59
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index aa3677c2111..3e96bb279e8 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -265,14 +265,16 @@ A typical value would be \(\"JOIN\" \"PART\" \"QUIT\")."
265(defcustom erc-network-hide-list nil 265(defcustom erc-network-hide-list nil
266 "A list of IRC networks to hide message types from. 266 "A list of IRC networks to hide message types from.
267A typical value would be \((\"freenode\" \"MODE\") 267A typical value would be \((\"freenode\" \"MODE\")
268(\"OFTC\" \"JOIN\" \"QUIT\"))." 268 \(\"OFTC\" \"JOIN\" \"QUIT\"))."
269 :version "25.1"
269 :group 'erc-ignore 270 :group 'erc-ignore
270 :type 'erc-message-type) 271 :type 'erc-message-type)
271 272
272(defcustom erc-channel-hide-list nil 273(defcustom erc-channel-hide-list nil
273 "A list of IRC channels to hide message types from. 274 "A list of IRC channels to hide message types from.
274A typical value would be \((\"#emacs\" \"QUIT\" \"JOIN\") 275A typical value would be \((\"#emacs\" \"QUIT\" \"JOIN\")
275(\"#erc\" \"NICK\")." 276 \(\"#erc\" \"NICK\")."
277 :version "25.1"
276 :group 'erc-ignore 278 :group 'erc-ignore
277 :type 'erc-message-type) 279 :type 'erc-message-type)
278 280
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el
index aabc5fdb1a2..3e5de0c0097 100644
--- a/lisp/eshell/em-term.el
+++ b/lisp/eshell/em-term.el
@@ -136,6 +136,7 @@ character to the invoked process."
136 "If non-nil, term buffers are destroyed after their processes die. 136 "If non-nil, term buffers are destroyed after their processes die.
137WARNING: Setting this to non-nil may result in unexpected 137WARNING: Setting this to non-nil may result in unexpected
138behavior for short-lived processes, see bug#18108." 138behavior for short-lived processes, see bug#18108."
139 :version "25.1"
139 :type 'boolean 140 :type 'boolean
140 :group 'eshell-term) 141 :group 'eshell-term)
141 142
diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el
index 0a5f472079d..48e6384497e 100644
--- a/lisp/gnus/mml-sec.el
+++ b/lisp/gnus/mml-sec.el
@@ -432,15 +432,18 @@ If called with a prefix argument, only encrypt (do NOT sign)."
432 432
433;;; Common functionality for mml1991.el, mml2015.el, mml-smime.el 433;;; Common functionality for mml1991.el, mml2015.el, mml-smime.el
434 434
435(define-obsolete-variable-alias 'mml1991-signers 'mml-secure-openpgp-signers) 435(define-obsolete-variable-alias 'mml1991-signers 'mml-secure-openpgp-signers
436(define-obsolete-variable-alias 'mml2015-signers 'mml-secure-openpgp-signers) 436 "25.1")
437(define-obsolete-variable-alias 'mml2015-signers 'mml-secure-openpgp-signers
438 "25.1")
437(defcustom mml-secure-openpgp-signers nil 439(defcustom mml-secure-openpgp-signers nil
438 "A list of your own key ID(s) which will be used to sign OpenPGP messages. 440 "A list of your own key ID(s) which will be used to sign OpenPGP messages.
439If set, it is added to the setting of `mml-secure-openpgp-sign-with-sender'." 441If set, it is added to the setting of `mml-secure-openpgp-sign-with-sender'."
440 :group 'mime-security 442 :group 'mime-security
441 :type '(repeat (string :tag "Key ID"))) 443 :type '(repeat (string :tag "Key ID")))
442 444
443(define-obsolete-variable-alias 'mml-smime-signers 'mml-secure-smime-signers) 445(define-obsolete-variable-alias 'mml-smime-signers 'mml-secure-smime-signers
446 "25.1")
444(defcustom mml-secure-smime-signers nil 447(defcustom mml-secure-smime-signers nil
445 "A list of your own key ID(s) which will be used to sign S/MIME messages. 448 "A list of your own key ID(s) which will be used to sign S/MIME messages.
446If set, it is added to the setting of `mml-secure-smime-sign-with-sender'." 449If set, it is added to the setting of `mml-secure-smime-sign-with-sender'."
@@ -448,9 +451,9 @@ If set, it is added to the setting of `mml-secure-smime-sign-with-sender'."
448 :type '(repeat (string :tag "Key ID"))) 451 :type '(repeat (string :tag "Key ID")))
449 452
450(define-obsolete-variable-alias 453(define-obsolete-variable-alias
451 'mml1991-encrypt-to-self 'mml-secure-openpgp-encrypt-to-self) 454 'mml1991-encrypt-to-self 'mml-secure-openpgp-encrypt-to-self "25.1")
452(define-obsolete-variable-alias 455(define-obsolete-variable-alias
453 'mml2015-encrypt-to-self 'mml-secure-openpgp-encrypt-to-self) 456 'mml2015-encrypt-to-self 'mml-secure-openpgp-encrypt-to-self "25.1")
454(defcustom mml-secure-openpgp-encrypt-to-self nil 457(defcustom mml-secure-openpgp-encrypt-to-self nil
455 "List of own key ID(s) or t; determines additional recipients with OpenPGP. 458 "List of own key ID(s) or t; determines additional recipients with OpenPGP.
456If t, also encrypt to key for message sender; if list, encrypt to those keys. 459If t, also encrypt to key for message sender; if list, encrypt to those keys.
@@ -469,7 +472,7 @@ https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18718"
469 (repeat (string :tag "Key ID")))) 472 (repeat (string :tag "Key ID"))))
470 473
471(define-obsolete-variable-alias 474(define-obsolete-variable-alias
472 'mml-smime-encrypt-to-self 'mml-secure-smime-encrypt-to-self) 475 'mml-smime-encrypt-to-self 'mml-secure-smime-encrypt-to-self "25.1")
473(defcustom mml-secure-smime-encrypt-to-self nil 476(defcustom mml-secure-smime-encrypt-to-self nil
474 "List of own key ID(s) or t; determines additional recipients with S/MIME. 477 "List of own key ID(s) or t; determines additional recipients with S/MIME.
475If t, also encrypt to key for message sender; if list, encrypt to those keys. 478If t, also encrypt to key for message sender; if list, encrypt to those keys.
@@ -488,7 +491,7 @@ https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18718"
488 (repeat (string :tag "Key ID")))) 491 (repeat (string :tag "Key ID"))))
489 492
490(define-obsolete-variable-alias 493(define-obsolete-variable-alias
491 'mml2015-sign-with-sender 'mml-secure-openpgp-sign-with-sender) 494 'mml2015-sign-with-sender 'mml-secure-openpgp-sign-with-sender "25.1")
492;mml1991-sign-with-sender did never exist. 495;mml1991-sign-with-sender did never exist.
493(defcustom mml-secure-openpgp-sign-with-sender nil 496(defcustom mml-secure-openpgp-sign-with-sender nil
494 "If t, use message sender to find an OpenPGP key to sign with." 497 "If t, use message sender to find an OpenPGP key to sign with."
@@ -496,14 +499,14 @@ https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18718"
496 :type 'boolean) 499 :type 'boolean)
497 500
498(define-obsolete-variable-alias 501(define-obsolete-variable-alias
499 'mml-smime-sign-with-sender 'mml-secure-smime-sign-with-sender) 502 'mml-smime-sign-with-sender 'mml-secure-smime-sign-with-sender "25.1")
500(defcustom mml-secure-smime-sign-with-sender nil 503(defcustom mml-secure-smime-sign-with-sender nil
501 "If t, use message sender to find an S/MIME key to sign with." 504 "If t, use message sender to find an S/MIME key to sign with."
502 :group 'mime-security 505 :group 'mime-security
503 :type 'boolean) 506 :type 'boolean)
504 507
505(define-obsolete-variable-alias 508(define-obsolete-variable-alias
506 'mml2015-always-trust 'mml-secure-openpgp-always-trust) 509 'mml2015-always-trust 'mml-secure-openpgp-always-trust "25.1")
507;mml1991-always-trust did never exist. 510;mml1991-always-trust did never exist.
508(defcustom mml-secure-openpgp-always-trust t 511(defcustom mml-secure-openpgp-always-trust t
509 "If t, skip key validation of GnuPG on encryption." 512 "If t, skip key validation of GnuPG on encryption."
@@ -513,6 +516,7 @@ https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18718"
513(defcustom mml-secure-fail-when-key-problem nil 516(defcustom mml-secure-fail-when-key-problem nil
514 "If t, raise an error if some key is missing or several keys exist. 517 "If t, raise an error if some key is missing or several keys exist.
515Otherwise, ask the user." 518Otherwise, ask the user."
519 :version "25.1"
516 :group 'mime-security 520 :group 'mime-security
517 :type 'boolean) 521 :type 'boolean)
518 522
@@ -523,6 +527,7 @@ This variable is only relevant if a recipient owns multiple key pairs (for
523encryption) or you own multiple key pairs (for signing). In such cases, 527encryption) or you own multiple key pairs (for signing). In such cases,
524you will be asked which key(s) should be used, and your choice can be 528you will be asked which key(s) should be used, and your choice can be
525customized in this variable." 529customized in this variable."
530 :version "25.1"
526 :group 'mime-security 531 :group 'mime-security
527 :type '(alist :key-type (symbol :tag "Protocol") :value-type 532 :type '(alist :key-type (symbol :tag "Protocol") :value-type
528 (alist :key-type (symbol :tag "Usage") :value-type 533 (alist :key-type (symbol :tag "Usage") :value-type
diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index 26fa0d94b88..2bda97f95d0 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -349,6 +349,7 @@ functionality is not available there."
349 "Whether to open up new windows in a buffer or a new window. 349 "Whether to open up new windows in a buffer or a new window.
350If non-nil, then open the URL in a new buffer rather than a new window if 350If non-nil, then open the URL in a new buffer rather than a new window if
351`browse-url-conkeror' is asked to open it in a new window." 351`browse-url-conkeror' is asked to open it in a new window."
352 :version "25.1"
352 :type 'boolean 353 :type 'boolean
353 :group 'browse-url) 354 :group 'browse-url)
354 355
@@ -415,6 +416,7 @@ commands reverses the effect of this variable."
415 416
416(defcustom browse-url-conkeror-arguments nil 417(defcustom browse-url-conkeror-arguments nil
417 "A list of strings to pass to Conkeror as arguments." 418 "A list of strings to pass to Conkeror as arguments."
419 :version "25.1"
418 :type '(repeat (string :tag "Argument")) 420 :type '(repeat (string :tag "Argument"))
419 :group 'browse-url) 421 :group 'browse-url)
420 422
diff --git a/lisp/net/newst-reader.el b/lisp/net/newst-reader.el
index 1647ef85364..9c29216ccaf 100644
--- a/lisp/net/newst-reader.el
+++ b/lisp/net/newst-reader.el
@@ -69,6 +69,7 @@ This must be one of the functions `newsticker-plainview' or
69(defcustom newsticker-download-logos 69(defcustom newsticker-download-logos
70 t 70 t
71 "If non-nil newsticker downloads logo images of subscribed feeds." 71 "If non-nil newsticker downloads logo images of subscribed feeds."
72 :version "25.1"
72 :type 'boolean 73 :type 'boolean
73 :group 'newsticker-reader) 74 :group 'newsticker-reader)
74 75
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index c22de2f77ac..1a0385e167e 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -1742,6 +1742,7 @@ and source-file directory for your debugger."
1742(defcustom gud-guiler-command-name "guile" 1742(defcustom gud-guiler-command-name "guile"
1743 "File name for executing the Guile debugger. 1743 "File name for executing the Guile debugger.
1744This should be an executable on your path, or an absolute file name." 1744This should be an executable on your path, or an absolute file name."
1745 :version "25.1"
1745 :type 'string 1746 :type 'string
1746 :group 'gud) 1747 :group 'gud)
1747 1748
diff --git a/lisp/progmodes/prog-mode.el b/lisp/progmodes/prog-mode.el
index 2f12df47723..718b33932ed 100644
--- a/lisp/progmodes/prog-mode.el
+++ b/lisp/progmodes/prog-mode.el
@@ -202,6 +202,7 @@ is immediately after the symbol. The prettification will be
202reapplied as soon as point moves away from the symbol. If 202reapplied as soon as point moves away from the symbol. If
203set to nil, the prettification persists even when point is 203set to nil, the prettification persists even when point is
204on the symbol." 204on the symbol."
205 :version "25.1"
205 :type '(choice (const :tag "Never unprettify" nil) 206 :type '(choice (const :tag "Never unprettify" nil)
206 (const :tag "Unprettify when point is inside" t) 207 (const :tag "Unprettify when point is inside" t)
207 (const :tag "Unprettify when point is inside or at right edge" right-edge)) 208 (const :tag "Unprettify when point is inside or at right edge" right-edge))
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index fe28ed776b2..a972def24b0 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -156,10 +156,11 @@ end it with `/'. DIR must be one of `project-roots' or
156 156
157(defgroup project-vc nil 157(defgroup project-vc nil
158 "Project implementation using the VC package." 158 "Project implementation using the VC package."
159 :version "25.1"
159 :group 'tools) 160 :group 'tools)
160 161
161(defcustom project-vc-ignores nil 162(defcustom project-vc-ignores nil
162 "List ot patterns to include in `project-ignores'." 163 "List of patterns to include in `project-ignores'."
163 :type '(repeat string) 164 :type '(repeat string)
164 :safe 'listp) 165 :safe 'listp)
165 166
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 4984c9908bf..fd700463acb 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -715,6 +715,7 @@ It makes underscores and dots word constituent chars.")
715 715
716(defcustom python-indent-guess-indent-offset-verbose t 716(defcustom python-indent-guess-indent-offset-verbose t
717 "Non-nil means to emit a warning when indentation guessing fails." 717 "Non-nil means to emit a warning when indentation guessing fails."
718 :version "25.1"
718 :type 'boolean 719 :type 'boolean
719 :group 'python 720 :group 'python
720 :safe' booleanp) 721 :safe' booleanp)
@@ -1999,6 +2000,7 @@ hosts PATH before starting processes. Values defined in
1999here. Normally you wont use this variable directly unless you 2000here. Normally you wont use this variable directly unless you
2000plan to ensure a particular set of paths to all Python shell 2001plan to ensure a particular set of paths to all Python shell
2001executed through tramp connections." 2002executed through tramp connections."
2003 :version "25.1"
2002 :type '(repeat string) 2004 :type '(repeat string)
2003 :group 'python) 2005 :group 'python)
2004 2006
@@ -2621,6 +2623,7 @@ current process to not hang waiting for output by safeguarding
2621interactive actions can be performed. This is useful to safely 2623interactive actions can be performed. This is useful to safely
2622attach setup code for long-running processes that eventually 2624attach setup code for long-running processes that eventually
2623provide a shell." 2625provide a shell."
2626 :version "25.1"
2624 :type 'hook 2627 :type 'hook
2625 :group 'python) 2628 :group 'python)
2626 2629
@@ -3258,18 +3261,22 @@ the full statement in the case of imports."
3258 (list "pypy") 3261 (list "pypy")
3259 "List of disabled interpreters. 3262 "List of disabled interpreters.
3260When a match is found, native completion is disabled." 3263When a match is found, native completion is disabled."
3264 :version "25.1"
3261 :type '(repeat string)) 3265 :type '(repeat string))
3262 3266
3263(defcustom python-shell-completion-native-enable t 3267(defcustom python-shell-completion-native-enable t
3264 "Enable readline based native completion." 3268 "Enable readline based native completion."
3269 :version "25.1"
3265 :type 'boolean) 3270 :type 'boolean)
3266 3271
3267(defcustom python-shell-completion-native-output-timeout 5.0 3272(defcustom python-shell-completion-native-output-timeout 5.0
3268 "Time in seconds to wait for completion output before giving up." 3273 "Time in seconds to wait for completion output before giving up."
3274 :version "25.1"
3269 :type 'float) 3275 :type 'float)
3270 3276
3271(defcustom python-shell-completion-native-try-output-timeout 1.0 3277(defcustom python-shell-completion-native-try-output-timeout 1.0
3272 "Time in seconds to wait for *trying* native completion output." 3278 "Time in seconds to wait for *trying* native completion output."
3279 :version "25.1"
3273 :type 'float) 3280 :type 'float)
3274 3281
3275(defvar python-shell-completion-native-redirect-buffer 3282(defvar python-shell-completion-native-redirect-buffer
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index fe39122d24f..6220b4cdc92 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -76,6 +76,7 @@
76 (require 'semantic/symref)) ;; for hit-lines slot 76 (require 'semantic/symref)) ;; for hit-lines slot
77 77
78(defgroup xref nil "Cross-referencing commands" 78(defgroup xref nil "Cross-referencing commands"
79 :version "25.1"
79 :group 'tools) 80 :group 'tools)
80 81
81 82
diff --git a/lisp/rect.el b/lisp/rect.el
index 789d0e9082d..73790f2f92a 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -403,6 +403,7 @@ With a prefix (or a FILL) argument, also fill too short lines."
403 403
404(defcustom rectangle-preview t 404(defcustom rectangle-preview t
405 "If non-nil, `string-rectangle' will show an-the-fly preview." 405 "If non-nil, `string-rectangle' will show an-the-fly preview."
406 :version "25.1"
406 :type 'boolean) 407 :type 'boolean)
407 408
408(defun rectangle--string-preview () 409(defun rectangle--string-preview ()
diff --git a/lisp/term/screen.el b/lisp/term/screen.el
index 704fbefb0ad..7f681154d6e 100644
--- a/lisp/term/screen.el
+++ b/lisp/term/screen.el
@@ -7,6 +7,7 @@
7 "Extra capabilities supported under \"screen\". 7 "Extra capabilities supported under \"screen\".
8Some features of screen depend on the terminal emulator in which 8Some features of screen depend on the terminal emulator in which
9it runs, which can change when the screen session is moved to another tty." 9it runs, which can change when the screen session is moved to another tty."
10 :version "25.1"
10 :type xterm--extra-capabilities-type 11 :type xterm--extra-capabilities-type
11 :group 'xterm) 12 :group 'xterm)
12 13
diff --git a/lisp/term/xterm.el b/lisp/term/xterm.el
index 104f98311a8..e06423ccfdd 100644
--- a/lisp/term/xterm.el
+++ b/lisp/term/xterm.el
@@ -65,6 +65,7 @@ using the OSC 52 sequence.
65If you select a region larger than this size, it won't be copied to your system 65If you select a region larger than this size, it won't be copied to your system
66clipboard. Since clipboard data is base 64 encoded, the actual number of 66clipboard. Since clipboard data is base 64 encoded, the actual number of
67string bytes that can be copied is 3/4 of this value." 67string bytes that can be copied is 3/4 of this value."
68 :version "25.1"
68 :type 'integer) 69 :type 'integer)
69 70
70(defconst xterm-paste-ending-sequence "\e[201~" 71(defconst xterm-paste-ending-sequence "\e[201~"