Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b0287b39
Commit
b0287b39
authored
Mar 19, 2010
by
Juanma Barranquero
Browse files
lisp/vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
parent
7d1a9163
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/vc-dispatcher.el
lisp/vc-dispatcher.el
+2
-9
No files found.
lisp/ChangeLog
View file @
b0287b39
2010-03-19 Juanma Barranquero <lekktu@gmail.com>
* vc-dispatcher.el (vc-do-command): Remove reference to `vc-path'.
2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
* vc-hooks.el (vc-path): Remove variable and obsolete declaration.
...
...
lisp/vc-dispatcher.el
View file @
b0287b39
...
...
@@ -318,16 +318,9 @@ case, and the process object in the asynchronous case."
(
status
0
))
(
when
files
(
setq
squeezed
(
nconc
squeezed
files
)))
(
let
((
exec-path
(
append
vc-path
exec-path
))
;; Add vc-path to PATH for the execution of this command.
;; Also, since some functions need to parse the output
(
let
(
;; Since some functions need to parse the output
;; from external commands, set LC_MESSAGES to C.
(
process-environment
(
cons
(
concat
"PATH="
(
getenv
"PATH"
)
path-separator
(
mapconcat
'identity
vc-path
path-separator
))
(
cons
"LC_MESSAGES=C"
process-environment
)))
(
process-environment
(
cons
"LC_MESSAGES=C"
process-environment
))
(
w32-quote-process-args
t
))
(
if
(
eq
okstatus
'async
)
;; Run asynchronously.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment