# HG changeset patch # User Thomas Arendsen Hein # Date 1149181709 -7200 # Node ID 482d3fb47d80693f929101f95944bf019009dd79 # Parent d3adb454c5a9655e147fa1853fd77184ffcb42c6 Renamed localrepo.undo() to rollback() and talk about "rollback information". diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2432,7 +2432,7 @@ def rollback(ui, repo): repository; for example an in-progress pull from the repository may fail if a rollback is performed. """ - repo.undo() + repo.rollback() def root(ui, repo): """print the root (top) of the current working dir @@ -2757,7 +2757,7 @@ def undo(ui, repo): instructions, see the rollback command. """ ui.warn(_('(the undo command is deprecated; use rollback instead)\n')) - repo.undo() + repo.rollback() def update(ui, repo, node=None, merge=False, clean=False, force=None, branch=None, **opts): diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -303,7 +303,7 @@ class localrepository(object): if tr != None and tr.running(): return tr.nest() - # save dirstate for undo + # save dirstate for rollback try: ds = self.opener("dirstate").read() except IOError: @@ -327,7 +327,7 @@ class localrepository(object): self.ui.warn(_("no interrupted transaction available\n")) return False - def undo(self, wlock=None): + def rollback(self, wlock=None): if not wlock: wlock = self.wlock() l = self.lock() @@ -338,7 +338,7 @@ class localrepository(object): self.reload() self.wreload() else: - self.ui.warn(_("no undo information available\n")) + self.ui.warn(_("no rollback information available\n")) def wreload(self): self.dirstate.read()