summaryrefslogtreecommitdiff
path: root/chess-gnuchess.el
diff options
context:
space:
mode:
Diffstat (limited to 'chess-gnuchess.el')
-rw-r--r--chess-gnuchess.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/chess-gnuchess.el b/chess-gnuchess.el
index 401e14c..e6a9c37 100644
--- a/chess-gnuchess.el
+++ b/chess-gnuchess.el
@@ -9,7 +9,8 @@
"The publically available chess engine 'gnuchess'."
:group 'chess-engine)
-(defcustom chess-gnuchess-path (executable-find "gnuchess")
+(defcustom chess-gnuchess-path (let ((exec-path (cons "/usr/games" exec-path)))
+ (executable-find "gnuchess"))
"The path to the gnuchess executable."
:type 'file
:group 'chess-gnuchess)