hgext/shelve.py
changeset 26602 c062a9c0293c
parent 26587 56b2bcea2529
child 26681 ca8170b5d370
--- a/hgext/shelve.py	Fri Oct 09 12:30:46 2015 -0500
+++ b/hgext/shelve.py	Fri Oct 09 15:31:50 2015 -0700
@@ -219,8 +219,8 @@
 def createcmd(ui, repo, pats, opts):
     """subcommand that creates a new shelve"""
 
-    def publicancestors(ctx):
-        """Compute the public ancestors of a commit.
+    def mutableancestors(ctx):
+        """return all mutable ancestors for ctx (included)
 
         Much faster than the revset ancestors(ctx) & draft()"""
         seen = set([nullrev])
@@ -326,7 +326,7 @@
                 ui.status(_("nothing changed\n"))
             return 1
 
-        bases = list(publicancestors(repo[node]))
+        bases = list(mutableancestors(repo[node]))
         shelvedfile(repo, name, 'hg').writebundle(bases, node)
         cmdutil.export(repo, [node],
                        fp=shelvedfile(repo, name, 'patch').opener('wb'),