Function: table-goto-bottom-right-corner
table-goto-bottom-right-corner is a byte-compiled function defined in
table.el.gz.
Signature
(table-goto-bottom-right-corner)
Documentation
Move point to bottom right 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-right-corner ()
"Move point to bottom right corner of the current table and return char position."
(table--goto-coordinate
(cons
(car (table--get-coordinate (cdr (table--horizontal-cell-list nil t))))
(1+ (cdr (table--get-coordinate (cdr (table--vertical-cell-list nil t))))))))