aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorPo Lu2023-10-01 17:07:58 +0800
committerPo Lu2023-10-01 17:08:25 +0800
commit12aca0f90d7aeaa8444508245e7596a64f2e8dce (patch)
treec3a59038f27c443573ecafaef90af6520e9b16f4 /src/xterm.c
parent7caa3f5499b1ca4b6d66c1655a4e0d6903755679 (diff)
downloademacs-12aca0f90d7aeaa8444508245e7596a64f2e8dce.tar.gz
emacs-12aca0f90d7aeaa8444508245e7596a64f2e8dce.zip
Update Android port
* doc/emacs/input.texi (On-Screen Keyboards): Revise documentation to reflect changes. * src/keyboard.c (lispy_function_keys) <KEYCODE_DPAD_CENTER>: Define select key absent out of negligence. * src/xterm.c (syms_of_xterm) <x-quit-keysym>: Default to nil. (bug#66040)
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/xterm.c b/src/xterm.c
index c459e5d8d95..18a6c51efb3 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -32812,17 +32812,12 @@ frame placement via frame parameters, `set-frame-position', and
32812 32812
32813This is used to support quitting on devices that do not have any kind 32813This is used to support quitting on devices that do not have any kind
32814of physical keyboard, or where the physical keyboard is incapable of 32814of physical keyboard, or where the physical keyboard is incapable of
32815entering `C-g'. It defaults to `XF86XK_AudioLowerVolume' on XFree86 32815entering `C-g'.
32816and X.Org servers, and is unset.
32817 32816
32818The value is an alist associating between strings, describing X server 32817The value is an alist associating between strings, describing X server
32819vendor names, and a single number describing the keysym to use. The 32818vendor names, and a single number describing the keysym to use. The
32820keysym to use for each display connection is determined upon 32819keysym to use for each display connection is determined upon
32821connection setup, and does not reflect further changes to this 32820connection setup, and does not reflect further changes to this
32822variable. */); 32821variable. */);
32823 Vx_quit_keysym 32822 Vx_quit_keysym = Qnil;
32824 = list2 (Fcons (build_string ("The X.Org Foundation"),
32825 make_int (269025041)),
32826 Fcons (build_string ("The XFree86 Project, Inc."),
32827 make_int (269025041)));
32828} 32823}