changeset 14354:c66ba016ebb8 stable

revset: note case-insensitive matches in keyword and user
author Martin Geisler <mg@aragost.com>
date Wed, 18 May 2011 09:20:52 +0200
parents afb2ed5b37a2
children 8fdc9dd8264b
files mercurial/revset.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revset.py	Wed May 18 09:15:18 2011 +0200
+++ b/mercurial/revset.py	Wed May 18 09:20:52 2011 +0200
@@ -366,7 +366,7 @@
 def keyword(repo, subset, x):
     """``keyword(string)``
     Search commit message, user name, and names of changed files for
-    string.
+    string. The match is case-insensitive.
     """
     # i18n: "keyword" is a keyword
     kw = getstring(x, _("keyword requires a string")).lower()
@@ -407,7 +407,7 @@
 
 def user(repo, subset, x):
     """``user(string)``
-    User name is string.
+    User name contains string. The match is case-insensitive.
     """
     return author(repo, subset, x)