summaryrefslogtreecommitdiff
path: root/chess-var.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2002-04-13 11:13:33 +0000
committerJohn Wiegley <johnw@newartisans.com>2002-04-13 11:13:33 +0000
commit7e960384fa89c02c2fc2be1f61fe18645f8a13fe (patch)
tree66d17d5fb9a7f73a3291e6261f1df2e12612eb2e /chess-var.el
parentf4639c9095c34caa60b4122e2cf4d6b1402508e3 (diff)
added message catalog support
Diffstat (limited to 'chess-var.el')
-rw-r--r--chess-var.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/chess-var.el b/chess-var.el
index c33b243..f5c789a 100644
--- a/chess-var.el
+++ b/chess-var.el
@@ -59,9 +59,8 @@ progress (nil), if it is drawn, resigned, mate, etc."
(changes (chess-ply-changes ply))
(position (chess-ply-pos ply)))
(if (chess-ply-final-p current-ply)
- (error "Cannot add moves to a completed game"))
- (unless (equal position (chess-ply-pos current-ply))
- (error "Positions do not match"))
+ (chess-error 'add-to-completed))
+ (assert (equal position (chess-ply-pos current-ply)))
(chess-ply-set-changes current-ply changes)
(chess-var-add-ply var (chess-ply-create
(chess-ply-next-pos current-ply)))))