From 5ff62250fe5b4e2dbda138aa5873f9dd6fb2c585 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 9 Apr 2002 08:58:35 +0000 Subject: *** no comment *** --- chess-network.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chess-network.el') diff --git a/chess-network.el b/chess-network.el index af22f92..21005eb 100644 --- a/chess-network.el +++ b/chess-network.el @@ -9,12 +9,12 @@ (require 'chess-algebraic) (defvar chess-network-regexp-alist - (list (cons chess-algebraic-regexp + (list (cons (concat chess-algebraic-regexp "$") (function (lambda () (funcall chess-engine-response-handler 'move (match-string 0))))) - (cons "pass" + (cons "pass$" (function (lambda () (funcall chess-engine-response-handler 'pass)))) @@ -28,11 +28,11 @@ (lambda () (funcall chess-engine-response-handler 'setup (match-string 1))))) - (cons "quit" + (cons "quit$" (function (lambda () (funcall chess-engine-response-handler 'quit)))) - (cons "resign" + (cons "resign$" (function (lambda () (funcall chess-engine-response-handler 'resign)))))) -- cgit v1.2.3