##// END OF EJS Templates
revset: note case-insensitive matches in keyword and user
Martin Geisler -
r14354:c66ba016 stable
parent child Browse files
Show More
@@ -366,7 +366,7 b' def date(repo, subset, x):'
366 366 def keyword(repo, subset, x):
367 367 """``keyword(string)``
368 368 Search commit message, user name, and names of changed files for
369 string.
369 string. The match is case-insensitive.
370 370 """
371 371 # i18n: "keyword" is a keyword
372 372 kw = getstring(x, _("keyword requires a string")).lower()
@@ -407,7 +407,7 b' def author(repo, subset, x):'
407 407
408 408 def user(repo, subset, x):
409 409 """``user(string)``
410 User name is string.
410 User name contains string. The match is case-insensitive.
411 411 """
412 412 return author(repo, subset, x)
413 413
General Comments 0
You need to be logged in to leave comments. Login now