mercurial/localrepo.py
changeset 26439 b50f5beadf3e
parent 26409 19d946cf2a1b
child 26441 56527b886d1d
--- a/mercurial/localrepo.py	Fri Sep 25 12:56:05 2015 -0700
+++ b/mercurial/localrepo.py	Fri Sep 25 12:28:12 2015 -0700
@@ -1211,10 +1211,15 @@
                 continue
             ce.refresh()
 
-    def _lock(self, vfs, lockname, wait, releasefn, acquirefn, desc):
+    def _lock(self, vfs, lockname, wait, releasefn, acquirefn, desc,
+              parentenvvar=None):
+        parentlock = None
+        if parentenvvar is not None:
+            parentlock = os.environ.get(parentenvvar)
         try:
             l = lockmod.lock(vfs, lockname, 0, releasefn=releasefn,
-                             acquirefn=acquirefn, desc=desc)
+                             acquirefn=acquirefn, desc=desc,
+                             parentlock=parentlock)
         except error.LockHeld as inst:
             if not wait:
                 raise