1
Fork 0
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:
Stefan Kangas 2025-03-02 19:45:53 +01:00
parent 56202138a3
commit 83e2e5e24b

View file

@ -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."