diff --git a/lisp/plstore.el b/lisp/plstore.el index b9025433b11..26c53b3e61f 100644 --- a/lisp/plstore.el +++ b/lisp/plstore.el @@ -212,7 +212,8 @@ symmetric encryption will be used." (with-current-buffer buffer (erase-buffer) (condition-case nil - (insert-file-contents-literally file) + (let ((coding-system-for-read 'raw-text)) + (insert-file-contents file)) (error)) (setq buffer-file-name (file-truename file)) (set-buffer-modified-p nil)