Function: gomoku-goto-square

gomoku-goto-square is a byte-compiled function defined in gomoku.el.gz.

Signature

(gomoku-goto-square INDEX)

Documentation

Move point to square number INDEX.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-goto-square (index)
  "Move point to square number INDEX."
  (gomoku-goto-xy (gomoku-index-to-x index) (gomoku-index-to-y index)))