# HG changeset patch # User TK Soh # Date 1175181919 18000 # Node ID cd650cd61b06b437464855f6e6499a6696700637 # Parent 7843528a7922c13f1ccd41ab413d6f2602622b9f help: log --keyword is case-insensitive diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2841,7 +2841,7 @@ table = { _('only follow the first parent of merge changesets')), ('d', 'date', '', _('show revs matching date spec')), ('C', 'copies', None, _('show copied files')), - ('k', 'keyword', [], _('search for a keyword')), + ('k', 'keyword', [], _('do case-insensitive search for a keyword')), ('l', 'limit', '', _('limit number of changes displayed')), ('r', 'rev', [], _('show the specified revision or range')), ('', 'removed', None, _('include revs where files were removed')),