Function: gomoku-point-square

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

Signature

(gomoku-point-square)

Documentation

Return the index of the square point is on.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-point-square ()
  "Return the index of the square point is on."
  (gomoku-xy-to-index (1+ (/ (- (current-column) gomoku-x-offset)
                             gomoku-square-width))
                      (gomoku-point-y)))