Function: table-goto-bottom-left-corner

table-goto-bottom-left-corner is a byte-compiled function defined in table.el.gz.

Signature

(table-goto-bottom-left-corner)

Documentation

Move point to bottom left corner of the current table and return char position.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table-goto-bottom-left-corner ()
  "Move point to bottom left corner of the current table and return char position."
  (table--goto-coordinate
   (cons
    (1- (car (table--get-coordinate (car (table--horizontal-cell-list t t)))))
    (1+ (cdr (table--get-coordinate (cdr (table--vertical-cell-list nil t))))))))