* bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key
@ 2023-01-16 11:47 Arash Esbati
2023-01-16 14:02 ` Eli Zaretskii
0 siblings, 1 reply; 5+ messages in thread
From: Arash Esbati @ 2023-01-16 11:47 UTC (permalink / raw)
To: 60858
Hi all,
is there a reason why the quotes around the above mentioned function are
like this:
`w32-register-hot-key`
instead of the usual
`w32-register-hot-key'
? If this is a copy-paste issue, the following patch against the
release branch fixes it:
--8<---------------cut here---------------start------------->8---
diff --git a/src/w32fns.c b/src/w32fns.c
index 192d3ddf27a..7b1ffc6a6be 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -10664,7 +10664,7 @@ syms_of_w32fns (void)
Properties" dialog, etc. On Windows 10, no \"Windows\" key
combinations are normally handed to applications. To enable Emacs to
process \"Windows\" key combinations, use the function
-`w32-register-hot-key`.
+`w32-register-hot-key'.
For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */);
Vw32_pass_lwindow_to_system = Qt;
@@ -10683,7 +10683,7 @@ syms_of_w32fns (void)
Properties" dialog, etc. On Windows 10, no \"Windows\" key
combinations are normally handed to applications. To enable Emacs to
process \"Windows\" key combinations, use the function
-`w32-register-hot-key`.
+`w32-register-hot-key'.
For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */);
Vw32_pass_rwindow_to_system = Qt;
@@ -10698,7 +10698,7 @@ syms_of_w32fns (void)
`w32-pass-rwindow-to-system' is nil.
This variable is only used on Windows 98 and ME. For other Windows
-versions, see the documentation of the `w32-register-hot-key`
+versions, see the documentation of the `w32-register-hot-key'
function. */);
/* Although 255 is technically not a valid key code, it works and
means that this hack won't interfere with any real key code. */
@@ -10732,7 +10732,7 @@ syms_of_w32fns (void)
respective modifier, or nil to appear as the `lwindow' key.
Any other value will cause the key to be ignored.
-Also see the documentation of the `w32-register-hot-key` function. */);
+Also see the documentation of the `w32-register-hot-key' function. */);
Vw32_lwindow_modifier = Qnil;
DEFVAR_LISP ("w32-rwindow-modifier",
@@ -10742,7 +10742,7 @@ syms_of_w32fns (void)
respective modifier, or nil to appear as the `rwindow' key.
Any other value will cause the key to be ignored.
-Also see the documentation of the `w32-register-hot-key` function. */);
+Also see the documentation of the `w32-register-hot-key' function. */);
Vw32_rwindow_modifier = Qnil;
DEFVAR_LISP ("w32-apps-modifier",
--8<---------------cut here---------------end--------------->8---
Best, Arash
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key
2023-01-16 11:47 bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Arash Esbati
@ 2023-01-16 14:02 ` Eli Zaretskii
2023-01-16 14:47 ` Arash Esbati
0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2023-01-16 14:02 UTC (permalink / raw)
To: Arash Esbati; +Cc: 60858-done
> From: Arash Esbati <arash@gnu.org>
> Date: Mon, 16 Jan 2023 12:47:24 +0100
> is there a reason why the quotes around the above mentioned function are
> like this:
>
> `w32-register-hot-key`
>
> instead of the usual
>
> `w32-register-hot-key'
>
> ?
It's the MD madness, sigh...
> If this is a copy-paste issue, the following patch against the
> release branch fixes it:
Thanks, installed.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key
2023-01-16 14:02 ` Eli Zaretskii
@ 2023-01-16 14:47 ` Arash Esbati
2023-01-16 14:56 ` Eli Zaretskii
0 siblings, 1 reply; 5+ messages in thread
From: Arash Esbati @ 2023-01-16 14:47 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 60858
Eli Zaretskii <eliz@gnu.org> writes:
> Thanks, installed.
Thanks. Did you exclude these 2 (lines 10667 & 10686) intentionally?
--8<---------------cut here---------------start------------->8---
diff --git a/src/w32fns.c b/src/w32fns.c
index 71206b8874c..b4192a5ffa6 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -10664,7 +10664,7 @@ syms_of_w32fns (void)
Properties" dialog, etc. On Windows 10, no \"Windows\" key
combinations are normally handed to applications. To enable Emacs to
process \"Windows\" key combinations, use the function
-`w32-register-hot-key`.
+`w32-register-hot-key'.
For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */);
Vw32_pass_lwindow_to_system = Qt;
@@ -10683,7 +10683,7 @@ syms_of_w32fns (void)
Properties" dialog, etc. On Windows 10, no \"Windows\" key
combinations are normally handed to applications. To enable Emacs to
process \"Windows\" key combinations, use the function
-`w32-register-hot-key`.
+`w32-register-hot-key'.
For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */);
Vw32_pass_rwindow_to_system = Qt;
--8<---------------cut here---------------end--------------->8---
Best, Arash
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-16 15:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-16 11:47 bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Arash Esbati
2023-01-16 14:02 ` Eli Zaretskii
2023-01-16 14:47 ` Arash Esbati
2023-01-16 14:56 ` Eli Zaretskii
2023-01-16 15:00 ` Arash Esbati
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.