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,v


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/play/gomoku.el,v
Date: Fri, 24 Nov 2006 11:10:51 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      06/11/24 11:10:51

Index: gomoku.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/play/gomoku.el,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -b -r1.48 -r1.49
--- gomoku.el   24 Nov 2006 10:31:26 -0000      1.48
+++ gomoku.el   24 Nov 2006 11:10:51 -0000      1.49
@@ -230,7 +230,7 @@
   "Vector recording the actual state of the Gomoku board.")
 
 (defvar gomoku-vector-length nil
-  "Length of gomoku-board vector.")
+  "Length of `gomoku-board' vector.")
 
 (defvar gomoku-draw-limit nil
   ;; This is usually set to 70% of the number of squares.
@@ -250,7 +250,7 @@
   (/ index (1+ gomoku-board-width)))
 
 (defun gomoku-init-board ()
-  "Create the gomoku-board vector and fill it with initial values."
+  "Create the `gomoku-board' vector and fill it with initial values."
   (setq gomoku-board (make-vector gomoku-vector-length 0))
   ;; Every square is 0 (i.e. empty) except padding squares:
   (let ((i 0) (ii (1- gomoku-vector-length)))
@@ -937,7 +937,7 @@
 (defun gomoku-prompt-for-move ()
   "Display a message asking for Human's move."
   (message (if (zerop gomoku-number-of-human-moves)
-              "Your move? (move to a free square and hit X, RET ...)"
+              "Your move?  (Move to a free square and hit X, RET ...)"
               "Your move?"))
   ;; This may seem silly, but if one omits the following line (or a similar
   ;; one), the cursor may very well go to some place where POINT is not.




reply via email to

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