From a20e8c3596c317619cdcecbf8fc66441e558d997 Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Sun, 13 Feb 2022 10:31:04 +0100 Subject: cape-dict: Use insert-file-contents (Fix #26) --- cape.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cape.el b/cape.el index ea8e323..4c7e400 100644 --- a/cape.el +++ b/cape.el @@ -557,7 +557,7 @@ If INTERACTIVE is nil the function acts like a capf." (or cape--dict-words (setq cape--dict-words (split-string (with-temp-buffer - (insert-file-contents-literally cape-dict-file) + (insert-file-contents cape-dict-file) (buffer-string)) "\n" 'omit-nulls)))) -- cgit v1.0