Function: gomoku-max-width

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

Signature

(gomoku-max-width)

Documentation

Largest possible board width for the current window.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
;;;
;;; DISPLAYING THE BOARD.
;;;

(defun gomoku-max-width ()
  "Largest possible board width for the current window."
  (1+ (/ (- (window-width)
	    gomoku-x-offset gomoku-x-offset 1)
	 gomoku-square-width)))