diff options
| author | Po Lu | 2023-10-01 17:07:58 +0800 |
|---|---|---|
| committer | Po Lu | 2023-10-01 17:08:25 +0800 |
| commit | 12aca0f90d7aeaa8444508245e7596a64f2e8dce (patch) | |
| tree | c3a59038f27c443573ecafaef90af6520e9b16f4 /src/xterm.c | |
| parent | 7caa3f5499b1ca4b6d66c1655a4e0d6903755679 (diff) | |
| download | emacs-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.c | 9 |
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 | ||
| 32813 | This is used to support quitting on devices that do not have any kind | 32813 | This is used to support quitting on devices that do not have any kind |
| 32814 | of physical keyboard, or where the physical keyboard is incapable of | 32814 | of physical keyboard, or where the physical keyboard is incapable of |
| 32815 | entering `C-g'. It defaults to `XF86XK_AudioLowerVolume' on XFree86 | 32815 | entering `C-g'. |
| 32816 | and X.Org servers, and is unset. | ||
| 32817 | 32816 | ||
| 32818 | The value is an alist associating between strings, describing X server | 32817 | The value is an alist associating between strings, describing X server |
| 32819 | vendor names, and a single number describing the keysym to use. The | 32818 | vendor names, and a single number describing the keysym to use. The |
| 32820 | keysym to use for each display connection is determined upon | 32819 | keysym to use for each display connection is determined upon |
| 32821 | connection setup, and does not reflect further changes to this | 32820 | connection setup, and does not reflect further changes to this |
| 32822 | variable. */); | 32821 | variable. */); |
| 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 | } |