From 4a53f0818d25602cb591fb749c62f89e626bd9ff Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 1 Jan 2020 03:01:30 -0500 Subject: [PATCH] Don't insert autoloads literally #2281 It causes encoding issues. --- core/cli/autoloads.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli/autoloads.el b/core/cli/autoloads.el index 196118879..279b3e870 100644 --- a/core/cli/autoloads.el +++ b/core/cli/autoloads.el @@ -225,7 +225,7 @@ it is nil, it will try to reload both." (with-temp-buffer (if scan (doom-cli--generate-autoloads-buffer file) - (insert-file-contents-literally file)) + (insert-file-contents file)) (save-excursion (let ((filestr (prin1-to-string file))) (while (re-search-forward "\\_" nil t)