diff -r b65af904d6d7 -r 80fd2958235a mercurial/hg.py --- a/mercurial/hg.py Fri Jul 29 12:30:12 2005 -0800 +++ b/mercurial/hg.py Fri Jul 29 15:02:27 2005 -0800 @@ -773,7 +773,8 @@ if update_dirstate: self.dirstate.setparents(n, nullid) - def commit(self, files = None, text = "", user = None, date = None): + def commit(self, files = None, text = "", user = None, date = None, + match = util.always): commit = [] remove = [] if files: @@ -786,7 +787,7 @@ else: self.ui.warn("%s not tracked!\n" % f) else: - (c, a, d, u) = self.changes() + (c, a, d, u) = self.changes(match = match) commit = c + a remove = d