Function: gomoku-end-of-line
gomoku-end-of-line is an interactive and byte-compiled function
defined in gomoku.el.gz.
Signature
(gomoku-end-of-line)
Documentation
Move point to last square on the Gomoku board row.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-end-of-line ()
"Move point to last square on the Gomoku board row."
(interactive nil gomoku-mode)
(move-to-column (+ gomoku-x-offset
(* gomoku-square-width (1- gomoku-board-width)))))