summaryrefslogtreecommitdiff
path: root/chess-network.el
diff options
context:
space:
mode:
Diffstat (limited to 'chess-network.el')
-rw-r--r--chess-network.el4
1 files changed, 2 insertions, 2 deletions
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"