mercurial/localrepo.py
changeset 7655 cce37dab7ad6
parent 7654 816b708f23af
child 7656 6a24fb994701
--- a/mercurial/localrepo.py	Wed Jan 14 21:47:38 2009 -0500
+++ b/mercurial/localrepo.py	Wed Jan 14 21:47:38 2009 -0500
@@ -763,6 +763,8 @@
                match=None, force=False, force_editor=False,
                p1=None, p2=None, extra={}, empty_ok=False):
         wlock = lock = None
+        if extra.get("close"):
+            force = True
         if files:
             files = util.unique(files)
         try:
@@ -837,6 +839,8 @@
             user = wctx.user()
             text = wctx.description()
 
+            if branchname == 'default' and extra.get('close'):
+                raise util.Abort(_('closing the default branch is invalid'))
             p1, p2 = [p.node() for p in wctx.parents()]
             c1 = self.changelog.read(p1)
             c2 = self.changelog.read(p2)