diff -r 14639c050251 -r 6d36fc70754e mercurial/commands.py --- a/mercurial/commands.py Fri Jun 19 13:58:22 2009 +0200 +++ b/mercurial/commands.py Fri Jun 19 13:58:48 2009 +0200 @@ -2108,7 +2108,7 @@ 'use "hg update" or merge with an explicit rev')) node = parent == bheads[0] and bheads[-1] or bheads[0] - if opts.get('show'): + if opts.get('preview'): p1 = repo['.'] p2 = repo[node] common = p1.ancestor(p2) @@ -3358,7 +3358,7 @@ (merge, [('f', 'force', None, _('force a merge with outstanding changes')), ('r', 'rev', '', _('revision to merge')), - ('S', 'show', None, + ('P', 'preview', None, _('review revisions to merge (no merge is performed)'))], _('[-f] [[-r] REV]')), "outgoing|out":