diff lisp/vc.el @ 10862:b905092475a7

(vc-do-command): Search vc-path first, not last.
author Richard M. Stallman <rms@gnu.org>
date Wed, 01 Mar 1995 08:30:54 +0000
parents 353416feba10
children 5b375fee0e1f
line wrap: on
line diff
--- a/lisp/vc.el	Wed Mar 01 04:27:37 1995 +0000
+++ b/lisp/vc.el	Wed Mar 01 08:30:54 1995 +0000
@@ -261,7 +261,7 @@
 	    (if (string= (substring file 0 preflen) pwd)
 		(setq file (substring file preflen))))
 	  (setq squeezed (append squeezed (list file)))))
-    (let ((exec-path (if vc-path (append exec-path vc-path) exec-path))
+    (let ((exec-path (append vc-path exec-path))
 	  ;; Add vc-path to PATH for the execution of this command.
 	  (process-environment
 	   (cons (concat "PATH=" (getenv "PATH")