Index: emacs/lisp/eshell/esh-ext.el
diff -c emacs/lisp/eshell/esh-ext.el:1.16 emacs/lisp/eshell/esh-ext.el:1.17
*** emacs/lisp/eshell/esh-ext.el:1.16   Mon Sep 20 15:54:10 2004
--- emacs/lisp/eshell/esh-ext.el        Tue May 31 00:14:26 2005
***************
*** 103,109 ****
    "Invoke a .BAT or .CMD file on DOS/Windows systems."
    ;; since CMD.EXE can't handle forward slashes in the initial
    ;; argument...
!   (setcar args (subst-char-in-string directory-sep-char ?\\ (car args)))
    (throw 'eshell-replace-command
         (eshell-parse-command eshell-windows-shell-file (cons "/c" args))))
  
--- 103,109 ----
    "Invoke a .BAT or .CMD file on DOS/Windows systems."
    ;; since CMD.EXE can't handle forward slashes in the initial
    ;; argument...
!   (setcar args (subst-char-in-string ?/ ?\\ (car args)))
    (throw 'eshell-replace-command
         (eshell-parse-command eshell-windows-shell-file (cons "/c" args))))
  


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to