From fa679a927beeac45017842a5c531c70fd596a041 Mon Sep 17 00:00:00 2001 From: "Sergey V. Firsov" Date: Sat, 11 Dec 2021 17:42:16 +0300 Subject: Fix restore of multibyte buffer names when loading state from file. Restore names as they were saved in the file, without backslash sequences for multibyte characters. --- perspective.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perspective.el b/perspective.el index 8bf4572..a22c194 100644 --- a/perspective.el +++ b/perspective.el @@ -1863,7 +1863,7 @@ restored." (frame-count 0) (state-complete (read (with-temp-buffer - (insert-file-contents-literally file) + (insert-file-contents file) (buffer-string))))) ;; open all files in a temporary perspective to avoid polluting "main" (persp-switch tmp-persp-name) -- cgit v1.0