summaryrefslogtreecommitdiff
path: root/chess-epd.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-29 02:43:55 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-29 02:43:55 -0400
commit3187bd1eadb312b6f6d6e1bb9218f19346300e7d (patch)
treeeb3667d49ec27fc7036d23bd23ed839191a261d7 /chess-epd.el
parent7e5230b8ffe32cfe7c1ec31d37c40684893aa787 (diff)
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).
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))))