Function: gomoku-index-to-y
gomoku-index-to-y is a byte-compiled function defined in gomoku.el.gz.
Signature
(gomoku-index-to-y INDEX)
Documentation
Return corresponding y-coord of board INDEX.
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-index-to-y (index)
"Return corresponding y-coord of board INDEX."
(/ index (1+ gomoku-board-width)))