From 3187bd1eadb312b6f6d6e1bb9218f19346300e7d Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 29 Aug 2008 02:43:55 -0400 Subject: 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). --- chess-epd.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chess-epd.el') 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)))) -- cgit v1.2.3