Thread (44 messages) flat view 44 messages, 3 authors, 2016-06-15
DORMANTno replies

Revision v7 of 3 in this series.

Revisions (3)
  1. v7 current
  2. v1 [diff vs current]
  3. v2 [diff vs current]

[PATCH v7 01/12] grep: allow -F -i combination

From: Nguyễn Thái Ngọc Duy <hidden>
Date: 2016-06-15 23:08:13
Subsystem: the rest · Maintainer: Linus Torvalds

-F means "no regex", not "case sensitive" so it should not override -i

Signed-off-by: Nguyễn Thái Ngọc Duy <redacted>
---
 builtin/grep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/grep.c b/builtin/grep.c
index 8c516a9..46c5ba1 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -809,7 +809,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
 
 	if (!opt.pattern_list)
 		die(_("no pattern given."));
-	if (!opt.fixed && opt.ignore_case)
+	if (opt.ignore_case)
 		opt.regflags |= REG_ICASE;
 
 	compile_grep_patterns(&opt);
-- 
2.7.0.377.g4cd97dd
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help