mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(convert-standard-filename): Convert directory
separators to Windows format.
This commit is contained in:
parent
10cf099d62
commit
dd89ee9520
1 changed files with 4 additions and 0 deletions
|
|
@ -233,6 +233,10 @@ with a definition that really does change some file names."
|
|||
(while (string-match "[?*:<>|\"\000-\037]" name start)
|
||||
(aset name (match-beginning 0) ?!)
|
||||
(setq start (match-end 0)))
|
||||
;; convert directory separators to Windows format
|
||||
(while (string-match "/" name start)
|
||||
(aset name (match-beginning 0) ?\\)
|
||||
(setq start (match-end 0)))
|
||||
name))
|
||||
|
||||
;;; Fix interface to (X-specific) mouse.el
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue