summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-10-03 15:23:33 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-10-03 15:23:54 -0700
commitcbf55dfc4c224fb0f918fcd526e105ecc4022c78 (patch)
tree75e33bc3ca0591b69a60fa01505987abe57174d0 /src
parent706855071736294c541410eac959b167bb346ed5 (diff)
downloadgrep-cbf55dfc4c224fb0f918fcd526e105ecc4022c78.tar.gz
grep: tighten -i doc
* doc/grep.in.1: * doc/grep.texi (Matching Control): * src/grep.c (usage): Make it clearer that -i affects patterns and data, but not file names (Bug#37604).
Diffstat (limited to 'src')
-rw-r--r--src/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grep.c b/src/grep.c
index ef6abb84..4b6b4659 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1926,7 +1926,7 @@ Pattern selection and interpretation:\n"), getprogname ());
printf (_("\
-e, --regexp=PATTERNS use PATTERNS for matching\n\
-f, --file=FILE take PATTERNS from FILE\n\
- -i, --ignore-case ignore case distinctions\n\
+ -i, --ignore-case ignore case distinctions in patterns and data\n\
-w, --word-regexp match only whole words\n\
-x, --line-regexp match only whole lines\n\
-z, --null-data a data line ends in 0 byte, not newline\n"));