# HG changeset patch # User Laurent Charignon # Date 2015-11-19 00:06:00 # Node ID e97132eb841c0c735c1ffdb1f56a1bc29e223d4b # Parent 5eac7ab59b95e5c2dc8dd6a268a51c49540fcbeb rebase: remove an unused todo Since we handled skipping obsolete revs when it is relevant, this todo is no longer useful. We replace the comment with two useful comments. diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -30,8 +30,9 @@ import os, errno revtodo = -1 nullmerge = -2 revignored = -3 -# To do with obsolescence +# successor in rebase destination revprecursor = -4 +# plain prune (no successor) revpruned = -5 cmdtable = {}