diff options
| author | Po Lu | 2024-03-21 20:45:25 +0800 |
|---|---|---|
| committer | Po Lu | 2024-03-21 20:45:48 +0800 |
| commit | 5a09cc111f052c120eddf0bcc98eeb1fd5435ae2 (patch) | |
| tree | 62196e97b34ee6a4b59a55bc3ce94b21e0d0107e /src | |
| parent | 393f58c85aeb78f814866ccaad9ae7efd3fa6766 (diff) | |
| download | emacs-5a09cc111f052c120eddf0bcc98eeb1fd5435ae2.tar.gz emacs-5a09cc111f052c120eddf0bcc98eeb1fd5435ae2.zip | |
; * src/xterm.c (syms_of_xterm): Document x-*-keysym's default values.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/xterm.c b/src/xterm.c index b30a2485148..c0aef65ab66 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -32547,7 +32547,8 @@ Android does not support scroll bars at all. */); | |||
| 32547 | doc: /* Which modifer value Emacs reports when Ctrl is depressed. | 32547 | doc: /* Which modifer value Emacs reports when Ctrl is depressed. |
| 32548 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or | 32548 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or |
| 32549 | `super', representing a modifier to be reported for key events with the | 32549 | `super', representing a modifier to be reported for key events with the |
| 32550 | Ctrl modifier (i.e. the keysym Ctrl_L or Ctrl_R) depressed. */); | 32550 | Ctrl modifier (i.e. the keysym Ctrl_L or Ctrl_R) depressed, with nil or |
| 32551 | any other value equivalent to `ctrl'. */); | ||
| 32551 | Vx_ctrl_keysym = Qnil; | 32552 | Vx_ctrl_keysym = Qnil; |
| 32552 | 32553 | ||
| 32553 | DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym, | 32554 | DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym, |
| @@ -32555,14 +32556,16 @@ Ctrl modifier (i.e. the keysym Ctrl_L or Ctrl_R) depressed. */); | |||
| 32555 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or | 32556 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or |
| 32556 | `super', representing a modifier to be reported for key events with the | 32557 | `super', representing a modifier to be reported for key events with the |
| 32557 | Alt modifier (e.g. the keysym Alt_L or Alt_R, if the keyboard features a | 32558 | Alt modifier (e.g. the keysym Alt_L or Alt_R, if the keyboard features a |
| 32558 | dedicated key for Meta) depressed. */); | 32559 | dedicated key for Meta) depressed, with nil or any other value |
| 32560 | equivalent to `alt'. */); | ||
| 32559 | Vx_alt_keysym = Qnil; | 32561 | Vx_alt_keysym = Qnil; |
| 32560 | 32562 | ||
| 32561 | DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym, | 32563 | DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym, |
| 32562 | doc: /* Which modifer value Emacs reports when Hyper is depressed. | 32564 | doc: /* Which modifer value Emacs reports when Hyper is depressed. |
| 32563 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or | 32565 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or |
| 32564 | `super', representing a modifier to be reported for key events with the | 32566 | `super', representing a modifier to be reported for key events with the |
| 32565 | Hyper modifier (i.e. the keysym Hyper_L or Hyper_R) depressed. */); | 32567 | Hyper modifier (i.e. the keysym Hyper_L or Hyper_R) depressed, with nil |
| 32568 | or any other value equivalent to `hyper'. */); | ||
| 32566 | Vx_hyper_keysym = Qnil; | 32569 | Vx_hyper_keysym = Qnil; |
| 32567 | 32570 | ||
| 32568 | DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym, | 32571 | DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym, |
| @@ -32570,14 +32573,16 @@ Hyper modifier (i.e. the keysym Hyper_L or Hyper_R) depressed. */); | |||
| 32570 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or | 32573 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or |
| 32571 | `super', representing a modifier to be reported for key events with the | 32574 | `super', representing a modifier to be reported for key events with the |
| 32572 | Meta modifier (e.g. the keysym Alt_L or Alt_R, when the keyboard does | 32575 | Meta modifier (e.g. the keysym Alt_L or Alt_R, when the keyboard does |
| 32573 | not feature a dedicated key for Meta) depressed. */); | 32576 | not feature a dedicated key for Meta) depressed, with nil or any other |
| 32577 | value equivalent to `meta'. */); | ||
| 32574 | Vx_meta_keysym = Qnil; | 32578 | Vx_meta_keysym = Qnil; |
| 32575 | 32579 | ||
| 32576 | DEFVAR_LISP ("x-super-keysym", Vx_super_keysym, | 32580 | DEFVAR_LISP ("x-super-keysym", Vx_super_keysym, |
| 32577 | doc: /* Which modifer value Emacs reports when Super is depressed. | 32581 | doc: /* Which modifer value Emacs reports when Super is depressed. |
| 32578 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or | 32582 | This should be one of the symbols `ctrl', `alt', `hyper', `meta', or |
| 32579 | `super', representing a modifier to be reported for key events with the | 32583 | `super', representing a modifier to be reported for key events with the |
| 32580 | Super modifier (i.e. the keysym Super_L or Super_R) depressed. */); | 32584 | Super modifier (i.e. the keysym Super_L or Super_R) depressed, with nil |
| 32585 | or any other value equivalent to `super'. */); | ||
| 32581 | Vx_super_keysym = Qnil; | 32586 | Vx_super_keysym = Qnil; |
| 32582 | 32587 | ||
| 32583 | DEFVAR_LISP ("x-wait-for-event-timeout", Vx_wait_for_event_timeout, | 32588 | DEFVAR_LISP ("x-wait-for-event-timeout", Vx_wait_for_event_timeout, |