Function: event-apply-hyper-modifier
event-apply-hyper-modifier is a byte-compiled function defined in
simple.el.gz.
Signature
(event-apply-hyper-modifier IGNORE-PROMPT)
Documentation
Add the Hyper modifier to the following event.
For example, type C-x @ h (event-apply-hyper-modifier) & to enter Hyper-&.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun event-apply-hyper-modifier (_ignore-prompt)
"\\<function-key-map>Add the Hyper modifier to the following event.
For example, type \\[event-apply-hyper-modifier] & to enter Hyper-&."
(vector (event-apply-modifier (read-event) 'hyper 24 "H-")))