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