mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
; Fix thinko
This commit is contained in:
parent
56202138a3
commit
83e2e5e24b
1 changed files with 3 additions and 3 deletions
|
|
@ -179,9 +179,9 @@ For backends which don't support it, it is emulated."
|
||||||
|
|
||||||
(defmacro vc--fix-home-for-bzr (tempdir)
|
(defmacro vc--fix-home-for-bzr (tempdir)
|
||||||
;; See the comment in `vc-bzr-test-bug9726'.
|
;; See the comment in `vc-bzr-test-bug9726'.
|
||||||
'(when (eq backend 'Bzr)
|
`(when (eq backend 'Bzr)
|
||||||
(push (format "BZR_HOME=%s" tempdir) process-environment)
|
(push (format "BZR_HOME=%s" ,tempdir) process-environment)
|
||||||
(push (format "HOME=%s" tempdir) process-environment)))
|
(push (format "HOME=%s" ,tempdir) process-environment)))
|
||||||
|
|
||||||
(defun vc-test--create-repo (backend)
|
(defun vc-test--create-repo (backend)
|
||||||
"Create a test repository in `default-directory', a temporary directory."
|
"Create a test repository in `default-directory', a temporary directory."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue