Function: table--cell-can-split-horizontally-p
table--cell-can-split-horizontally-p is a byte-compiled function
defined in table.el.gz.
Signature
(table--cell-can-split-horizontally-p)
Documentation
Test if a cell can split at current location horizontally.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--cell-can-split-horizontally-p ()
"Test if a cell can split at current location horizontally."
(and (not buffer-read-only)
(let ((point-x (car (table--get-coordinate))))
(table-recognize-cell 'force)
(and (> point-x (car table-cell-info-lu-coordinate))
(<= point-x (1- (car table-cell-info-rb-coordinate)))))))