From 3187bd1eadb312b6f6d6e1bb9218f19346300e7d Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 29 Aug 2008 02:43:55 -0400 Subject: Several changes to fix byte-compile warnings, changed some iso-8859-1 encoded files to UTF-8, and switched to using insert-file-contents instead of the -literally variant (which doesn't respect content encodings). --- chess-network.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chess-network.el') diff --git a/chess-network.el b/chess-network.el index ea181fc..efc9d28 100644 --- a/chess-network.el +++ b/chess-network.el @@ -52,7 +52,7 @@ (function (lambda () (funcall chess-engine-response-handler 'undo - (string-to-int (match-string 1)))))) + (string-to-number (match-string 1)))))) (cons "accept\\(\\s-+\\(.+\\)\\)?$" (function (lambda () @@ -120,7 +120,7 @@ (if (fboundp 'open-network-stream-server) (open-network-stream-server "*chess-network*" (current-buffer) - (string-to-int + (string-to-number (read-string "Port: "))) (start-process "*chess-network*" (current-buffer) "/usr/bin/nc" -- cgit v1.2.3