diff options
author | Glenn Morris <rgm@gnu.org> | 2020-11-07 09:57:56 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2020-11-07 09:57:56 -0800 |
commit | 6b63b6669d51331381063781dd28bb02a26d3d04 (patch) | |
tree | 6d921da91179a5a462681d03e91d7453cf2430a5 /src/w32fns.c | |
parent | 35d9881809b4e27d1ae0fe1c7329df8e0968f5f8 (diff) | |
parent | 53933cdf5c8df479897b3c60d8c259d9d9dbc0f2 (diff) | |
download | emacs-6b63b6669d51331381063781dd28bb02a26d3d04.tar.gz emacs-6b63b6669d51331381063781dd28bb02a26d3d04.tar.bz2 emacs-6b63b6669d51331381063781dd28bb02a26d3d04.zip |
Merge from origin/emacs-27
53933cdf5c ; * lisp/international/mule.el (define-coding-system): Doc...
e90ffcf759 * src/w32fns.c (Fw32_register_hot_key): Doc fix. (Bug#44456)
89740e9cb5 Prevent redisplay from moving point behind user's back
5932df7435 Document that the :match function for a widget takes an ex...
1b7ab9d0ac Don't render XML declaration of an HTML document (bug#44348)
# Conflicts:
# lisp/international/mule.el
Diffstat (limited to 'src/w32fns.c')
-rw-r--r-- | src/w32fns.c | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index ef69f40611e..7bb96891d05 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -8498,8 +8498,8 @@ DEFUN ("w32-register-hot-key", Fw32_register_hot_key, doc: /* Register KEY as a hot-key combination. Certain key combinations like Alt-Tab and Win-R are reserved for system use on Windows, and therefore are normally intercepted by the -system. These key combinations can be received by registering them -as hot-keys, except for Win-L which always locks the computer. +system. These key combinations can be used in Emacs by registering +them as hot-keys, except for Win-L which always locks the computer. On Windows 98 and ME, KEY must be a one element key definition in vector form that would be acceptable to `define-key' (e.g. [A-tab] for @@ -8508,16 +8508,19 @@ Alt-Tab). The meta modifier is interpreted as Alt if modifier keys. The return value is the hotkey-id if registered, otherwise nil. -On Windows versions since NT, KEY can also be specified as [M-], [s-] or -[h-] to indicate that all combinations of that key should be processed -by Emacs instead of the operating system. The super and hyper -modifiers are interpreted according to the current values of -`w32-lwindow-modifier' and `w32-rwindow-modifier'. For instance, -setting `w32-lwindow-modifier' to `super' and then calling -`(w32-register-hot-key [s-])' grabs all combinations of the left Windows -key to Emacs, but leaves the right Windows key free for the operating -system keyboard shortcuts. The return value is t if the call affected -any key combinations, otherwise nil. */) +On Windows versions since NT, KEY can also be specified as just a +modifier key, [M-], [s-] or [H-], to indicate that all combinations +of the respective modifier key should be processed by Emacs instead +of the operating system. The super and hyper modifiers are +interpreted according to the current values of `w32-lwindow-modifier' +and `w32-rwindow-modifier'. For instance, setting `w32-lwindow-modifier' +to `super' and then calling `(w32-register-hot-key [s-])' grabs all +combinations of the left Windows key to Emacs as keys with the Super +modifier, but leaves the right Windows key free for the operating +system keyboard shortcuts. + +The return value is t if the call affected any key combinations, +otherwise nil. */) (Lisp_Object key) { key = w32_parse_and_hook_hot_key (key, 1); |