]> git.eshelyaron.com Git - emacs.git/commitdiff
Make vc-tests work with MSYS svn program
authorFabrice Popineau <fabrice.popineau@gmail.com>
Tue, 7 Jul 2015 15:06:53 +0000 (18:06 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 7 Jul 2015 15:06:53 +0000 (18:06 +0300)
* lisp/vc/vc-svn.el (vc-svn-create-repo): Fix the file:// URL when
svn is an MSYS program.

lisp/vc/vc-svn.el

index f97e2ab17e9a914723605a5322e75e585720f32e..8d6eae58d25feea9745c4b85b01886034d1dee29 100644 (file)
@@ -279,7 +279,13 @@ RESULT is a list of conses (FILE . STATE) for directory DIR."
   ;; Expand default-directory because svn gets confused by eg
   ;; file://~/path/to/file.  (Bug#15446).
   (vc-svn-command "*vc*" 0 "." "checkout"
-                  (let ((defdir (expand-file-name default-directory)))
+                  (let ((defdir (expand-file-name default-directory))
+                        (svn-prog (executable-find "svn")))
+                    (when (and (fboundp 'w32-application-type)
+                               (eq (w32-application-type svn-prog) 'msys))
+                      (setq defdir
+                            (replace-regexp-in-string "^\\(.\\):/" "/\\1/"
+                                                      defdir)))
                     (concat (if (and (stringp defdir)
                                      (eq (aref defdir 0) ?/))
                                 "file://"