aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/w32-fns.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el
index 1e12f177f87..580bea0631a 100644
--- a/lisp/w32-fns.el
+++ b/lisp/w32-fns.el
@@ -254,10 +254,12 @@ with a definition that really does change some file names."
254 (aset name (match-beginning 0) ?!) 254 (aset name (match-beginning 0) ?!)
255 (setq start (match-end 0))) 255 (setq start (match-end 0)))
256 ;; convert directory separators to Windows format 256 ;; convert directory separators to Windows format
257 (while (string-match "/" name start) 257 ;; (but only if the shell in use requires it)
258 (aset name (match-beginning 0) ?\\) 258 (if (w32-shell-dos-semantics)
259 (setq start (match-end 0))) 259 (while (string-match "/" name start)
260 name)) 260 (aset name (match-beginning 0) ?\\)
261 (setq start (match-end 0))))
262 name))
261 263
262;;; Fix interface to (X-specific) mouse.el 264;;; Fix interface to (X-specific) mouse.el
263(defun x-set-selection (type data) 265(defun x-set-selection (type data)