Show More
@@ -565,9 +565,13 b' def uisetup(ui):' | |||
|
565 | 565 | return |
|
566 | 566 | |
|
567 | 567 | cmdtable["qrecord"] = \ |
|
568 | (qrecord, mq.cmdtable['^qnew'][1], # same options as qnew | |
|
568 | (qrecord, | |
|
569 | # same options as qnew, but copy them so we don't get | |
|
570 | # -i/--interactive for qrecord | |
|
571 | mq.cmdtable['^qnew'][1][:], | |
|
569 | 572 | _('hg qrecord [OPTION]... PATCH [FILE]...')) |
|
570 | 573 | |
|
574 | _wrapcmd('qnew', mq.cmdtable, qrecord, _("interactively record a new patch")) | |
|
571 | 575 | _wrapcmd('qrefresh', mq.cmdtable, qrefresh, |
|
572 | 576 | _("interactively select changes to refresh")) |
|
573 | 577 |
General Comments 0
You need to be logged in to leave comments.
Login now