summaryrefslogtreecommitdiff
path: root/chess-epd.el
diff options
context:
space:
mode:
Diffstat (limited to 'chess-epd.el')
-rw-r--r--chess-epd.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/chess-epd.el b/chess-epd.el
index b4b4232..eeaed56 100644
--- a/chess-epd.el
+++ b/chess-epd.el
@@ -83,7 +83,7 @@ and advance point after the correctly parsed position."
"Return a list of positions contained in FILE."
(let ((positions (list t)) pos)
(with-temp-buffer
- (insert-file-literally file)
+ (insert-file-contents file)
(goto-char (point-min))
(while (setq pos (chess-epd-parse))
(nconc positions (list pos))))