Function: table--cell-can-split-vertically-p

table--cell-can-split-vertically-p is a byte-compiled function defined in table.el.gz.

Signature

(table--cell-can-split-vertically-p)

Documentation

Test if a cell can split at current location vertically.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--cell-can-split-vertically-p ()
  "Test if a cell can split at current location vertically."
  (and (not buffer-read-only)
       (let ((point-y (cdr (table--get-coordinate))))
	 (table-recognize-cell 'force)
	 (and (> point-y (cdr table-cell-info-lu-coordinate))
	      (<= point-y (cdr table-cell-info-rb-coordinate))))))