Function: table--point-in-cell-p

table--point-in-cell-p is a byte-compiled function defined in table.el.gz.

Signature

(table--point-in-cell-p &optional LOCATION)

Documentation

Return t when point is in a valid table cell in the current buffer.

When optional LOCATION is provided the test is performed at that location.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--point-in-cell-p (&optional location)
  "Return t when point is in a valid table cell in the current buffer.
When optional LOCATION is provided the test is performed at that location."
  (and (table--at-cell-p (or location (point)))
       (if location
	   (save-excursion
	     (goto-char location)
	     (table--probe-cell))
	 (table--probe-cell))
       t))