Function: gomoku-max-height

gomoku-max-height is a byte-compiled function defined in gomoku.el.gz.

Signature

(gomoku-max-height)

Documentation

Largest possible board height for the current window.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-max-height ()
  "Largest possible board height for the current window."
  (1+ (/ (- (window-height)
	    gomoku-y-offset gomoku-y-offset 2)
	 ;; 2 instead of 1 because WINDOW-HEIGHT includes the mode line !
	 gomoku-square-height)))