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