emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r102336: Remove odd code from kandmar


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102336: Remove odd code from kandmark, gomoku.
Date: Wed, 10 Nov 2010 19:57:02 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102336
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2010-11-10 19:57:02 -0800
message:
  Remove odd code from kandmark, gomoku.
  * lisp/play/landmark.el (lm-prompt-for-move):
  * lisp/play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
modified:
  lisp/ChangeLog
  lisp/play/gomoku.el
  lisp/play/landmark.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-11-11 03:54:59 +0000
+++ b/lisp/ChangeLog    2010-11-11 03:57:02 +0000
@@ -2,6 +2,9 @@
 
        * obsolete/lucid.el: Don't warn about any CL functions in this file.
 
+       * play/landmark.el (lm-prompt-for-move):
+       * play/gomoku.el (gomoku-prompt-for-move): Remove nonsensical code.
+
        * progmodes/idlw-complete-structtag.el: Remove unused dec `name'.
 
        * progmodes/idlwave.el (idlwave-routine-entry-compare-twins)

=== modified file 'lisp/play/gomoku.el'
--- a/lisp/play/gomoku.el       2010-11-03 03:33:24 +0000
+++ b/lisp/play/gomoku.el       2010-11-11 03:57:02 +0000
@@ -929,11 +929,7 @@
   "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?"))
-  ;; 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.
-  ;; FIXME: this can't be right!!  --Stef
-  (save-excursion (set-buffer (other-buffer))))
+              "Your move?")))
 
 (defun gomoku-prompt-for-other-game ()
   "Ask for another game, and start it."

=== modified file 'lisp/play/landmark.el'
--- a/lisp/play/landmark.el     2010-11-03 03:35:38 +0000
+++ b/lisp/play/landmark.el     2010-11-11 03:57:02 +0000
@@ -826,11 +826,7 @@
   "Display a message asking for Human's move."
   (message (if (zerop lm-number-of-human-moves)
               "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.
-  ;; FIXME: this can't be right!!  --Stef
-  (save-excursion (set-buffer (other-buffer))))
+              "Your move?")))
 
 (defun lm-prompt-for-other-game ()
   "Ask for another game, and start it."


reply via email to

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