diff mercurial/merge.py @ 20278:20ef533ffb01

merge: update comment for future devs
author Sean Farley <sean.michael.farley@gmail.com>
date Wed, 06 Nov 2013 10:26:25 -0600
parents ba6486076429
children 5b4f963d21cc
line wrap: on
line diff
--- a/mercurial/merge.py	Wed Jan 15 18:14:12 2014 -0600
+++ b/mercurial/merge.py	Wed Nov 06 10:26:25 2013 -0600
@@ -680,7 +680,9 @@
     try:
         wc = repo[None]
         if node is None:
-            # tip of current branch
+            # Here is where we should consider bookmarks, divergent bookmarks,
+            # foreground changesets (successors), and tip of current branch;
+            # but currently we are only checking the branch tips.
             try:
                 node = repo.branchtip(wc.branch())
             except error.RepoLookupError: