aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-27 00:36:04 +0000
committerKarl Heuer1995-05-27 00:36:04 +0000
commitb525816e487ebaef8df8f6936014fc941ce7e067 (patch)
tree961d521dc49ae369913dedc6f46c29379e61feae
parent153e4de00035f4da8d78f7a2f609435c67bd2e81 (diff)
downloademacs-b525816e487ebaef8df8f6936014fc941ce7e067.tar.gz
emacs-b525816e487ebaef8df8f6936014fc941ce7e067.zip
(vc-log-info): Use path-separator.
-rw-r--r--lisp/vc-hooks.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index 8b4d8ab748e..4b41ef1ca40 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -237,7 +237,8 @@ value of this flag.")
237 ;; Add vc-path to PATH for the execution of this command. 237 ;; Add vc-path to PATH for the execution of this command.
238 (process-environment 238 (process-environment
239 (cons (concat "PATH=" (getenv "PATH") 239 (cons (concat "PATH=" (getenv "PATH")
240 ":" (mapconcat 'identity vc-path ":")) 240 path-separator
241 (mapconcat 'identity vc-path path-separator))
241 process-environment))) 242 process-environment)))
242 (apply 'call-process command nil "*vc*" nil 243 (apply 'call-process command nil "*vc*" nil
243 (append flags (list (file-name-nondirectory file))))) 244 (append flags (list (file-name-nondirectory file)))))