unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#71333: [PATCH] ; * src/xterm.c (syms_of_xterm): Fix doc string typos
@ 2024-06-03  9:53 Collin Funk
  2024-06-03 12:06 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Collin Funk @ 2024-06-03  9:53 UTC (permalink / raw)
  To: 71333

[-- Attachment #1: Type: text/plain, Size: 738 bytes --]

I'm guessing this was just a typo that was copy pasted a few times?

modifer -> modifier

In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version
 3.24.42, cairo version 1.18.0) of 2024-05-30 built on fedora
Repository revision: baecf9bb283e52a829e31ae6f36c4687171a51c5
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12014000
System Description: Fedora Linux 40 (Workstation Edition)

Configured using:
 'configure --prefix=/home/collin/.local --with-sound=no
 --with-libsystemd --without-gconf --without-compress-install
 --with-native-compilation=yes --with-cairo --with-x=yes
 --with-x-toolkit=gtk3 --with-harfbuzz --with-tree-sitter
 --with-imagemagick --with-mailutils'

Collin


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-src-xterm.c-syms_of_xterm-Fix-doc-string-typos.patch --]
[-- Type: text/x-patch, Size: 2880 bytes --]

From d298be779d7cb69e4b467aa3dea58d480092b134 Mon Sep 17 00:00:00 2001
From: Collin Funk <collin.funk1@gmail.com>
Date: Mon, 3 Jun 2024 02:35:06 -0700
Subject: [PATCH] ; * src/xterm.c (syms_of_xterm): Fix doc string typos

---
 src/xterm.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/xterm.c b/src/xterm.c
index 2f5e54f63d5..5e200203f64 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -32695,7 +32695,7 @@ syms_of_xterm (void)
   DEFSYM (Qfile_name_sans_extension, "file-name-sans-extension");
 
   DEFVAR_LISP ("x-ctrl-keysym", Vx_ctrl_keysym,
-    doc: /* Which modifer value Emacs reports when Ctrl is depressed.
+    doc: /* Which modifier 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 for key events with the
 Ctrl modifier (i.e. the keysym Ctrl_L or Ctrl_R) depressed, with nil or
@@ -32703,7 +32703,7 @@ syms_of_xterm (void)
   Vx_ctrl_keysym = Qnil;
 
   DEFVAR_LISP ("x-alt-keysym", Vx_alt_keysym,
-    doc: /* Which modifer value Emacs reports when Alt is depressed.
+    doc: /* Which modifier 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 for key events with the
 Alt modifier (e.g. the keysym Alt_L or Alt_R, if the keyboard features a
@@ -32712,7 +32712,7 @@ syms_of_xterm (void)
   Vx_alt_keysym = Qnil;
 
   DEFVAR_LISP ("x-hyper-keysym", Vx_hyper_keysym,
-    doc: /* Which modifer value Emacs reports when Hyper is depressed.
+    doc: /* Which modifier 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 for key events with the
 Hyper modifier (i.e. the keysym Hyper_L or Hyper_R) depressed, with nil
@@ -32720,7 +32720,7 @@ syms_of_xterm (void)
   Vx_hyper_keysym = Qnil;
 
   DEFVAR_LISP ("x-meta-keysym", Vx_meta_keysym,
-    doc: /* Which modifer value Emacs reports when Meta is depressed.
+    doc: /* Which modifier 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 for key events with the
 Meta modifier (e.g. the keysym Alt_L or Alt_R, when the keyboard does
@@ -32729,7 +32729,7 @@ syms_of_xterm (void)
   Vx_meta_keysym = Qnil;
 
   DEFVAR_LISP ("x-super-keysym", Vx_super_keysym,
-    doc: /* Which modifer value Emacs reports when Super is depressed.
+    doc: /* Which modifier 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 for key events with the
 Super modifier (i.e. the keysym Super_L or Super_R) depressed, with nil
-- 
2.45.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#71333: [PATCH] ; * src/xterm.c (syms_of_xterm): Fix doc string typos
  2024-06-03  9:53 bug#71333: [PATCH] ; * src/xterm.c (syms_of_xterm): Fix doc string typos Collin Funk
@ 2024-06-03 12:06 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2024-06-03 12:06 UTC (permalink / raw)
  To: Collin Funk; +Cc: 71333-done

> From: Collin Funk <collin.funk1@gmail.com>
> Date: Mon, 03 Jun 2024 02:53:53 -0700
> 
> I'm guessing this was just a typo that was copy pasted a few times?
> 
> modifer -> modifier

Thanks, installed on the master branch, and closing the bug.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-06-03 12:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03  9:53 bug#71333: [PATCH] ; * src/xterm.c (syms_of_xterm): Fix doc string typos Collin Funk
2024-06-03 12:06 ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).