summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2022-02-13 10:31:04 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2022-02-13 10:31:04 +0100
commita20e8c3596c317619cdcecbf8fc66441e558d997 (patch)
tree2a866222d39dcf3cfc8e5804a2080d1bc5fb457a
parent1e58824f29f1cbd4b4dd938412d19d1faa5651c1 (diff)
cape-dict: Use insert-file-contents (Fix #26)
-rw-r--r--cape.el2
1 files changed, 1 insertions, 1 deletions
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))))