diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | chess-display.el | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2002-04-16 John Wiegley <johnw@gnu.org> + * chess-link.el (chess-link): Fixed an error in display creation, + and which game was used. + * chess-display.el (chess-display-handler): Set the side-to-move text to a reasonable default. diff --git a/chess-display.el b/chess-display.el index c445a1e..0bdbdaf 100644 --- a/chess-display.el +++ b/chess-display.el @@ -166,6 +166,7 @@ also view the same game." (unless (or (not (integerp index)) (< index 0) (> index (chess-game-index chess-module-game))) + ;; setup the mode-line variables as well (setq chess-display-index index chess-display-move-text (if (= index 0) |
