Variable: landmark-board-width
landmark-board-width is a variable defined in landmark.el.gz.
Value
nil
Documentation
Number of columns on the Landmark board.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
;;;_ + THE BOARD.
;; The board is a rectangular grid. We code empty squares with 0, X's with 1
;; and O's with 6. The rectangle is recorded in a one dimensional vector
;; containing padding squares (coded with -1). These squares allow us to
;; detect when we are trying to move out of the board. We denote a square by
;; its (X,Y) coords, or by the INDEX corresponding to them in the vector. The
;; leftmost topmost square has coords (1,1) and index landmark-board-width + 2.
;; Similarly, vectors between squares may be given by two DX, DY coords or by
;; one DEPL (the difference between indexes).
(defvar landmark-board-width nil
"Number of columns on the Landmark board.")