##// END OF EJS Templates
commands: fix missing empty synopses
Matt Mackall -
r9604:fcc85abc default
parent child Browse files
Show More
@@ -3328,7 +3328,7 b' table = {'
3328 3328 ] + walkopts + dryrunopts,
3329 3329 _('[OPTION]... [SOURCE]... DEST')),
3330 3330 "debugancestor": (debugancestor, [], _('[INDEX] REV1 REV2')),
3331 "debugcheckstate": (debugcheckstate, []),
3331 "debugcheckstate": (debugcheckstate, [], ''),
3332 3332 "debugcommands": (debugcommands, [], _('[COMMAND]')),
3333 3333 "debugcomplete":
3334 3334 (debugcomplete,
@@ -3342,7 +3342,7 b' table = {'
3342 3342 "debugfsinfo": (debugfsinfo, [], _('[PATH]')),
3343 3343 "debugindex": (debugindex, [], _('FILE')),
3344 3344 "debugindexdot": (debugindexdot, [], _('FILE')),
3345 "debuginstall": (debuginstall, []),
3345 "debuginstall": (debuginstall, [], ''),
3346 3346 "debugrebuildstate":
3347 3347 (debugrebuildstate,
3348 3348 [('r', 'rev', '', _('revision to rebuild to'))],
@@ -3569,7 +3569,7 b' table = {'
3569 3569 [('u', 'untrusted', None, _('show untrusted configuration options'))],
3570 3570 _('[-u] [NAME]...')),
3571 3571 "^summary|sum":
3572 (summary, []),
3572 (summary, [], ''),
3573 3573 "^status|st":
3574 3574 (status,
3575 3575 [('A', 'all', None, _('show status of all files')),
@@ -3597,7 +3597,7 b' table = {'
3597 3597 ('m', 'message', '', _('use <text> as commit message')),
3598 3598 ] + commitopts2,
3599 3599 _('[-l] [-m TEXT] [-d DATE] [-u USER] [-r REV] NAME...')),
3600 "tags": (tags, []),
3600 "tags": (tags, [], ''),
3601 3601 "tip":
3602 3602 (tip,
3603 3603 [('p', 'patch', None, _('show patch')),
General Comments 0
You need to be logged in to leave comments. Login now