]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xterm.c (syms_of_xterm): Fix typo.
authorPo Lu <luangruo@yahoo.com>
Sat, 16 Mar 2024 07:18:07 +0000 (15:18 +0800)
committerEshel Yaron <me@eshelyaron.com>
Mon, 18 Mar 2024 15:43:19 +0000 (16:43 +0100)
(cherry picked from commit deebf74b0e178f841c8f504b002b139d13889344)

src/xterm.c

index bebc30c910310fcb25622c50fe8f57a547542692..c30015ec8f0ceb0ec67e9ecb218e335e6c701e4b 100644 (file)
@@ -32538,14 +32538,14 @@ Android does not support scroll bars at all.  */);
   DEFVAR_LISP ("x-ctrl-keysym", Vx_ctrl_keysym,
     doc: /* Which modifer value Emacs reports when Ctrl is depressed.
 This should be one of the symbols `ctrl', `alt', `hyper', `meta', or
-`super', representing a modifier to be reported in key events with the
+`super', representing a modifier to be reported for key events with the
 Ctrl modifier (i.e. the keysym Ctrl_L or Ctrl_R) depressed.  */);
   Vx_ctrl_keysym = Qnil;
 
   DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
     doc: /* Which modifer value Emacs reports when Alt is depressed.
 This should be one of the symbols `ctrl', `alt', `hyper', `meta', or
-`super', representing a modifier to be reported in key events with the
+`super', representing a modifier to be reported for key events with the
 Alt modifier (e.g. the keysym Alt_L or Alt_R, if the keyboard features a
 dedicated key for Meta) depressed.  */);
   Vx_alt_keysym = Qnil;
@@ -32553,14 +32553,14 @@ dedicated key for Meta) depressed.  */);
   DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
     doc: /* Which modifer value Emacs reports when Hyper is depressed.
 This should be one of the symbols `ctrl', `alt', `hyper', `meta', or
-`super', representing a modifier to be reported in key events with the
+`super', representing a modifier to be reported for key events with the
 Hyper modifier (i.e. the keysym Hyper_L or Hyper_R) depressed.  */);
   Vx_hyper_keysym = Qnil;
 
   DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
     doc: /* Which modifer value Emacs reports when Meta is depressed.
 This should be one of the symbols `ctrl', `alt', `hyper', `meta', or
-`super', representing a modifier to be reported in key events with the
+`super', representing a modifier to be reported for key events with the
 Meta modifier (e.g. the keysym Alt_L or Alt_R, when the keyboard does
 not feature a dedicated key for Meta) depressed.  */);
   Vx_meta_keysym = Qnil;
@@ -32568,7 +32568,7 @@ not feature a dedicated key for Meta) depressed.  */);
   DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
     doc: /* Which modifer value Emacs reports when Super is depressed.
 This should be one of the symbols `ctrl', `alt', `hyper', `meta', or
-`super', representing a modifier to be reported in key events with the
+`super', representing a modifier to be reported for key events with the
 Super modifier (i.e. the keysym Super_L or Super_R) depressed.  */);
   Vx_super_keysym = Qnil;