# HG changeset patch # User Dirkjan Ochtman # Date 1211185335 -7200 # Node ID f4c612da788de2f93a9c4ef2b2ed3832b42518dc # Parent 92b5be85467795069e66611c1f4dbed1f16534f6 mq: add correct documentation for qpop diff -r 92b5be854677 -r f4c612da788d hgext/mq.py --- a/hgext/mq.py Mon May 19 10:19:59 2008 +0200 +++ b/hgext/mq.py Mon May 19 10:22:15 2008 +0200 @@ -1943,7 +1943,11 @@ return ret def pop(ui, repo, patch=None, **opts): - """pop the current patch off the stack""" + """pop the current patch off the stack + + By default, pops off the top of the patch stack. If given a patch name, + keeps popping off patches until the named patch is at the top of the stack. + """ localupdate = True if opts['name']: q = queue(ui, repo.join(""), repo.join(opts['name']))