From 539d39a0dbcfb3e1d264be20c916f81f1b167a39 Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Tue, 1 Apr 2014 00:02:19 +0200 Subject: chess-clock-tick-tock: Fix an error on first call. First time around, chess-clock-last-time is nil. --- chess-clock.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chess-clock.el') diff --git a/chess-clock.el b/chess-clock.el index 1e5ece0..bf12d43 100644 --- a/chess-clock.el +++ b/chess-clock.el @@ -87,7 +87,8 @@ (chess-game-inhibit-events t) counter) (setq chess-clock-last-time (current-time)) - (when (and (> (chess-game-index chess-module-game) 0) + (when (and last-time + (> (chess-game-index chess-module-game) 0) (not (chess-game-status chess-module-game))) (if (chess-pos-side-to-move (chess-game-pos chess-module-game)) (setq counter 'white-remaining) -- cgit v1.2.3