Function: term-send-raw
term-send-raw is an interactive and byte-compiled function defined in
term.el.gz.
Signature
(term-send-raw)
Documentation
Send last typed character to the terminal-emulator without any interpretation.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-send-raw ()
"Send last typed character to the terminal-emulator without any interpretation."
(interactive)
(let ((keys (this-command-keys)))
(term-send-raw-string (string (aref keys (1- (length keys)))))))