Function: table-backward-cell
table-backward-cell is an autoloaded, interactive and byte-compiled
function defined in table.el.gz.
Signature
(table-backward-cell &optional ARG)
Documentation
Move backward to the beginning of the previous cell.
With argument ARG, do it ARG times; a negative argument ARG = -N means move forward N cells.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(table-recognize-cell 'force nil (if unrecognize -1 nil)))) ; refill the cache with new cell contents
;;;###autoload
(defun table-backward-cell (&optional arg)
"Move backward to the beginning of the previous cell.
With argument ARG, do it ARG times;
a negative argument ARG = -N means move forward N cells."
(interactive "p")
(or arg (setq arg 1))
(table-forward-cell (- arg)))