Function: *table--cell-quoted-insert

*table--cell-quoted-insert is an interactive and byte-compiled function defined in table.el.gz.

Signature

(*table--cell-quoted-insert ARG)

Documentation

Table cell version of quoted-insert.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun *table--cell-quoted-insert (arg)
  "Table cell version of `quoted-insert'."
  (interactive "*p")
  (let ((char (read-quoted-char)))
    (while (> arg 0)
      (table--cell-insert-char char nil)
      (setq arg (1- arg)))))