Fix
issue443: inconsistent output of "hg qunapplied -v"
1. Don't skip over unpushable (guarded) unapplied patches.
2. Don't display unpushable patches, unless -v is given, otherwise
guarded and unguarded patches can't be distinguished.
--- a/hgext/mq.py Fri Mar 16 00:22:59 2007 -0300
+++ b/hgext/mq.py Sat Mar 17 18:46:52 2007 +0100
@@ -1142,6 +1142,8 @@
else:
stat = 'G'
pfx = '%d %s ' % (i, stat)
+ elif status == 'U' and not self.pushable(i)[0]:
+ continue
self.ui.write('%s%s\n' % (pfx, displayname(patch)))
else:
msng_list = []
@@ -1438,8 +1440,8 @@
raise util.Abort(_("patch %s is not in series file") % patch)
start = q.series.index(patch) + 1
else:
- start = q.series_end()
- q.qseries(repo, start=start, summary=opts.get('summary'))
+ start = q.series_end(True)
+ q.qseries(repo, start=start, status='U', summary=opts.get('summary'))
def qimport(ui, repo, *filename, **opts):
"""import a patch