# HG changeset patch # User Eli Zaretskii # Date 961685918 0 # Node ID f157067ee950c30c7ea2b046b6b91642c2231794 # Parent 4a37c3f4cb29c299a384f540ab1dc882e33dae66 (make-backup-file-name-1): On DOS/Windows, run the backup file name through convert-standard-filename. diff -r 4a37c3f4cb29 -r f157067ee950 lisp/files.el --- a/lisp/files.el Thu Jun 22 14:57:45 2000 +0000 +++ b/lisp/files.el Thu Jun 22 14:58:38 2000 +0000 @@ -2297,6 +2297,9 @@ ;; and replace the leading "x:" with "/drive_x". (or (file-name-absolute-p file) (setq file (expand-file-name file))) ; make defaults explicit + ;; Replace any invalid file-name characters (for the + ;; case of backing up remote files). + (setq file (convert-standard-filename file)) (setq dir-sep-string (char-to-string directory-sep-char)) (or (eq directory-sep-char ?/) (subst-char-in-string ?/ ?\\ file))