summaryrefslogtreecommitdiff
path: root/chess-display.el
diff options
context:
space:
mode:
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)