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