emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/play/gomoku.el


From: Pavel Janík
Subject: [Emacs-diffs] Changes to emacs/lisp/play/gomoku.el
Date: Sat, 10 Nov 2001 03:14:13 -0500

Index: emacs/lisp/play/gomoku.el
diff -u emacs/lisp/play/gomoku.el:1.30 emacs/lisp/play/gomoku.el:1.31
--- emacs/lisp/play/gomoku.el:1.30      Tue Nov  6 14:39:19 2001
+++ emacs/lisp/play/gomoku.el   Sat Nov 10 03:14:13 2001
@@ -80,6 +80,26 @@
   :type 'hook
   :group 'gomoku)
 
+;;; 
+;;; CONSTANTS FOR BOARD
+;;;
+
+;; You may change these values if you have a small screen or if the squares
+;; look rectangular, but spacings SHOULD be at least 2 (MUST BE at least 1).
+
+(defconst gomoku-square-width 4
+  "*Horizontal spacing between squares on the Gomoku board.")
+
+(defconst gomoku-square-height 2
+  "*Vertical spacing between squares on the Gomoku board.")
+
+(defconst gomoku-x-offset 3
+  "*Number of columns between the Gomoku board and the side of the window.")
+
+(defconst gomoku-y-offset 1
+  "*Number of lines between the Gomoku board and the top of the window.")
+
+
 (defvar gomoku-mode-map nil
   "Local keymap to use in Gomoku mode.")
 
@@ -926,22 +946,6 @@
 ;;;
 ;;; DISPLAYING THE BOARD.
 ;;;
-
-;; You may change these values if you have a small screen or if the squares
-;; look rectangular, but spacings SHOULD be at least 2 (MUST BE at least 1).
-
-(defconst gomoku-square-width 4
-  "*Horizontal spacing between squares on the Gomoku board.")
-
-(defconst gomoku-square-height 2
-  "*Vertical spacing between squares on the Gomoku board.")
-
-(defconst gomoku-x-offset 3
-  "*Number of columns between the Gomoku board and the side of the window.")
-
-(defconst gomoku-y-offset 1
-  "*Number of lines between the Gomoku board and the top of the window.")
-
 
 (defun gomoku-max-width ()
   "Largest possible board width for the current window."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]