##// END OF EJS Templates
Add missing --mq option to hg log....
Michael Glassford -
r10796:ce2ae8bf stable
parent child Browse files
Show More
@@ -2669,9 +2669,10 b' def uisetup(ui):'
2669 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
2669 entry = extensions.wrapcommand(commands.table, 'init', mqinit)
2670 entry[1].extend(mqopt)
2670 entry[1].extend(mqopt)
2671
2671
2672 norepo = commands.norepo.split(" ")
2672 for cmd in commands.table.keys():
2673 for cmd in commands.table.keys():
2673 cmd = cmdutil.parsealiases(cmd)[0]
2674 cmd = cmdutil.parsealiases(cmd)[0]
2674 if cmd in commands.norepo:
2675 if cmd in norepo:
2675 continue
2676 continue
2676 entry = extensions.wrapcommand(commands.table, cmd, mqcommand)
2677 entry = extensions.wrapcommand(commands.table, cmd, mqcommand)
2677 entry[1].extend(mqopt)
2678 entry[1].extend(mqopt)
General Comments 0
You need to be logged in to leave comments. Login now