aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-01-16 16:00:18 +0200
committerEli Zaretskii2023-01-16 16:00:18 +0200
commit7c8eac8fbcb8cc8a4ededd86f4d2c7a507d8294c (patch)
tree2eb2a14c086ed33ccd1e3fe601cceb2666e63baf
parent67df34c143d1adbf6d2817abb5da5dcad06369bb (diff)
downloademacs-7c8eac8fbcb8cc8a4ededd86f4d2c7a507d8294c.tar.gz
emacs-7c8eac8fbcb8cc8a4ededd86f4d2c7a507d8294c.zip
; * src/w32fns.c: Fix quoting. Patch by Arash Esbati <arash@gnu.org>.
-rw-r--r--src/w32fns.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 192d3ddf27a..71206b8874c 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -10396,8 +10396,8 @@ to be converted to forward slashes by the caller. */)
10396#endif /* WINDOWSNT */ 10396#endif /* WINDOWSNT */
10397 10397
10398/* Query a value from the Windows Registry (under HKCU and HKLM), 10398/* Query a value from the Windows Registry (under HKCU and HKLM),
10399 where `key` is the registry key, `name` is the name, and `lpdwtype` 10399 where `key' is the registry key, `name' is the name, and `lpdwtype'
10400 is a pointer to the return value's type. `lpwdtype` can be NULL if 10400 is a pointer to the return value's type. `lpwdtype' can be NULL if
10401 you do not care about the type. 10401 you do not care about the type.
10402 10402
10403 Returns: pointer to the value, or null pointer if the key/name does 10403 Returns: pointer to the value, or null pointer if the key/name does
@@ -10698,7 +10698,7 @@ acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or
10698`w32-pass-rwindow-to-system' is nil. 10698`w32-pass-rwindow-to-system' is nil.
10699 10699
10700This variable is only used on Windows 98 and ME. For other Windows 10700This variable is only used on Windows 98 and ME. For other Windows
10701versions, see the documentation of the `w32-register-hot-key` 10701versions, see the documentation of the `w32-register-hot-key'
10702function. */); 10702function. */);
10703 /* Although 255 is technically not a valid key code, it works and 10703 /* Although 255 is technically not a valid key code, it works and
10704 means that this hack won't interfere with any real key code. */ 10704 means that this hack won't interfere with any real key code. */
@@ -10732,7 +10732,7 @@ The value can be hyper, super, meta, alt, control or shift for the
10732respective modifier, or nil to appear as the `lwindow' key. 10732respective modifier, or nil to appear as the `lwindow' key.
10733Any other value will cause the key to be ignored. 10733Any other value will cause the key to be ignored.
10734 10734
10735Also see the documentation of the `w32-register-hot-key` function. */); 10735Also see the documentation of the `w32-register-hot-key' function. */);
10736 Vw32_lwindow_modifier = Qnil; 10736 Vw32_lwindow_modifier = Qnil;
10737 10737
10738 DEFVAR_LISP ("w32-rwindow-modifier", 10738 DEFVAR_LISP ("w32-rwindow-modifier",
@@ -10742,7 +10742,7 @@ The value can be hyper, super, meta, alt, control or shift for the
10742respective modifier, or nil to appear as the `rwindow' key. 10742respective modifier, or nil to appear as the `rwindow' key.
10743Any other value will cause the key to be ignored. 10743Any other value will cause the key to be ignored.
10744 10744
10745Also see the documentation of the `w32-register-hot-key` function. */); 10745Also see the documentation of the `w32-register-hot-key' function. */);
10746 Vw32_rwindow_modifier = Qnil; 10746 Vw32_rwindow_modifier = Qnil;
10747 10747
10748 DEFVAR_LISP ("w32-apps-modifier", 10748 DEFVAR_LISP ("w32-apps-modifier",
@@ -11271,7 +11271,7 @@ globals_of_w32fns (void)
11271 get_proc_addr (hm_kernel32, "SetThreadDescription"); 11271 get_proc_addr (hm_kernel32, "SetThreadDescription");
11272 11272
11273 /* Support OS dark mode on Windows 10 version 1809 and higher. 11273 /* Support OS dark mode on Windows 10 version 1809 and higher.
11274 See `w32_applytheme` which uses appropriate APIs per version of Windows. 11274 See `w32_applytheme' which uses appropriate APIs per version of Windows.
11275 For future wretches who may need to understand Windows build numbers: 11275 For future wretches who may need to understand Windows build numbers:
11276 https://docs.microsoft.com/en-us/windows/release-health/release-information 11276 https://docs.microsoft.com/en-us/windows/release-health/release-information
11277 */ 11277 */