From d479a3f9a9cff0a4c1223d20d47b2cb6fa23bd5e Mon Sep 17 00:00:00 2001 From: Mikael Kermorgant Date: Tue, 25 Jun 2019 17:23:18 +0300 Subject: [PATCH] gh-119: write phpactor's output using utf-8 ignore any setting telling to use any other coding system by default fixes #119 --- phpactor.el | 1 + 1 file changed, 1 insertion(+) diff --git a/phpactor.el b/phpactor.el index 62e5d19..449a52c 100644 --- a/phpactor.el +++ b/phpactor.el @@ -200,6 +200,7 @@ of GitHub.") :parameters arguments))) (output (get-buffer-create "*Phpactor Output*")) (phpactor-executable (phpactor-find-executable)) + (coding-system-for-write 'utf-8) (cwd (phpactor-get-working-dir))) (with-current-buffer output (erase-buffer)) (with-current-buffer (get-buffer-create "*Phpactor Input*")