diff options
author | Glenn Morris <rgm@gnu.org> | 2010-11-10 19:57:02 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-11-10 19:57:02 -0800 |
commit | 55a4b4fe0377bfcb48c2f6f19f982cd4a70fa21d (patch) | |
tree | 45970c128829da3c92cb8eea8c697a3671264ca7 /lisp/play/landmark.el | |
parent | b3e4c9115928174beaaa09bf6b1342a35440de4f (diff) | |
download | emacs-55a4b4fe0377bfcb48c2f6f19f982cd4a70fa21d.tar.gz |
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.
Diffstat (limited to 'lisp/play/landmark.el')
-rw-r--r-- | lisp/play/landmark.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/play/landmark.el b/lisp/play/landmark.el index 2902187034a..e6a271caec2 100644 --- a/lisp/play/landmark.el +++ b/lisp/play/landmark.el @@ -826,11 +826,7 @@ If the game is finished, this command requests for another game." "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." |