Function: *table--cell-open-line
*table--cell-open-line is an interactive and byte-compiled function
defined in table.el.gz.
Signature
(*table--cell-open-line N)
Documentation
Table cell version of open-line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun *table--cell-open-line (n)
"Table cell version of `open-line'."
(interactive "*p")
(table-with-cache-buffer
(save-excursion
(insert (make-string n ?\n))
(table--fill-region (point) (point))
(setq table-inhibit-auto-fill-paragraph t))))