summaryrefslogtreecommitdiff
path: root/chess-display.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2002-04-07 09:35:05 +0000
committerJohn Wiegley <johnw@newartisans.com>2002-04-07 09:35:05 +0000
commit1198bebb0e77e0a6e687f1bc01ad0bc868cedf68 (patch)
treee961609dc961816392fd924a6647a72e3d0791b9 /chess-display.el
parent7ef0297f2478f3fc4e7d684706806e30b6109c22 (diff)
Games are now playable to the end.
Diffstat (limited to 'chess-display.el')
-rw-r--r--chess-display.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/chess-display.el b/chess-display.el
index e8fc67d..7b83e67 100644
--- a/chess-display.el
+++ b/chess-display.el
@@ -404,7 +404,9 @@ The key bindings available in this mode are:
(if ply
(setq chess-display-mode-line
(concat
- " " (if color "White" "BLACK")
+ (if (chess-ply-final-p ply)
+ " FINISHED"
+ (concat " " (if color "White" "BLACK")))
(if index
(concat " " (int-to-string
(if (> index 1)