From 9516059404050d7ba391c5415d2684327ee55276 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 29 Apr 1998 22:15:59 +0000 Subject: [PATCH] (tar-extract): Use `!' instead of `:' to construct buffer-file-name (`:' is invalid in file names on Windows). --- lisp/tar-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index dce8bee126c..c2d2033a641 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -739,7 +739,8 @@ appear on disk when you save the tar-file's buffer." (insert-buffer-substring tar-buffer start end) (goto-char 0) (setq buffer-file-name - (expand-file-name (concat tarname ":" name))) + ;; `:' is not allowed on Windows + (expand-file-name (concat tarname "!" name))) (setq buffer-file-truename (abbreviate-file-name buffer-file-name)) ;; Set the default-directory to the dir of the -- 2.39.5