Function: gomoku-point-y

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

Signature

(gomoku-point-y)

Documentation

Return the board row where point is.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-point-y ()
  "Return the board row where point is."
  (1+ (/ (- (count-lines (point-min) (point))
            gomoku-y-offset (if (bolp) 0 1))
         gomoku-square-height)))