Function: hexl-quoted-insert

hexl-quoted-insert is an interactive and byte-compiled function defined in hexl.el.gz.

Signature

(hexl-quoted-insert ARG)

Documentation

Read next input character and insert it.

Useful for inserting control characters and non-ASCII characters given their numerical code. You may also type octal digits, to insert a character with that code.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-quoted-insert (arg)
  "Read next input character and insert it.
Useful for inserting control characters and non-ASCII characters given their
numerical code.
You may also type octal digits, to insert a character with that code."
  (interactive "p")
  (hexl-insert-multibyte-char (read-quoted-char) arg))