summaryrefslogtreecommitdiff
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2022-06-18 19:52:31 +0300
committerBasil L. Contovounesios <contovob@tcd.ie>2022-06-18 20:05:40 +0300
commit4e68166d77cdd0f3b84c9bf5681f6a95e51ad238 (patch)
tree1fc4fa9f33c40fabe58d504131b3cb2847408415 /lisp/frame.el
parent9b44824620fd500b9e7094bd1a8ca23608cb2e5b (diff)
downloademacs-4e68166d77cdd0f3b84c9bf5681f6a95e51ad238.tar.gz
Fix last tty-select-active-regions change
* lisp/frame.el (tty-select-active-regions): Pacify warning about missing defcustom :group by specifying the same group as select-active-regions, as well as the frames group. * src/keyboard.c (command_loop_1, syms_of_keyboard): Rename last occurrences of xterm-select-active-regions to tty-select-active-regions (bug#55883).
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index a6aa4475dd9..6996bb2e9c6 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -2155,6 +2155,8 @@ On a text-mode terminal that supports setSelection command, if
this variable is non-nil, Emacs will set the PRIMARY selection
from the active region, according to `select-active-regions'.
This is currently supported only on xterm."
+ :group 'frames
+ :group 'killing
:version "29.1"
:type 'boolean)