diff options
| author | gcv <gepardcv@gmail.com> | 2021-12-12 20:34:14 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-12 20:34:14 -0800 |
| commit | 1ccce551689a3a26eb511cce0514ea9043835549 (patch) | |
| tree | eaba768ccfdcc9e3a9060b953ff73ac7d7c56b67 | |
| parent | b84b4e2e3efd3455bcdebb9efb4b07a4cec94ebb (diff) | |
| parent | fa679a927beeac45017842a5c531c70fd596a041 (diff) | |
Merge pull request #172 from intramurz/fix/multibyte-buffer-names-restore
Fix restore of multibyte buffer names when loading state from file.
| -rw-r--r-- | perspective.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
