Function: table-goto-top-right-corner
table-goto-top-right-corner is a byte-compiled function defined in
table.el.gz.
Signature
(table-goto-top-right-corner)
Documentation
Move point to top 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-top-right-corner ()
"Move point to top 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 (car (table--vertical-cell-list t t))))))))