blob: 0fd1e8c28264a87fc0495fdc99cb5e13f620b9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- chess-orig/chess-common.el 2007-12-14 21:54:58.000000000 +0100
+++ chess/chess-common.el 2008-03-14 21:11:56.000000000 +0100
@@ -41,10 +41,11 @@
(chess-message 'starting-engine name)
(unless (boundp path)
(chess-error 'could-not-find-engine name path))
- (setq proc (start-process (concat "chess-" name)
- (current-buffer) (symbol-value path)))
- (chess-message 'starting-engine-done name)
- proc))
+ (when (symbol-value path)
+ (setq proc (start-process (concat "chess-" name)
+ (current-buffer) (symbol-value path)))
+ (chess-message 'starting-engine-done name)
+ proc)))
((eq event 'ready)
(chess-game-set-data game 'active t)
|