Function: gomoku-point-x

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

Signature

(gomoku-point-x)

Documentation

Return the board column where point is.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-point-x ()
  "Return the board column where point is."
  (1+ (/ (- (current-column) gomoku-x-offset)
	 gomoku-square-width)))