[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] grep: remove redundant syntax bit
From: |
Paolo Bonzini |
Subject: |
[PATCH] grep: remove redundant syntax bit |
Date: |
Tue, 4 May 2010 17:37:18 +0200 |
* grep.c (Gcompile): Remove RE_HAT_LISTS_NOT_NEWLINE.
---
src/grep.c | 5 +----
1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/src/grep.c b/src/grep.c
index 7b30f66..e12ae3d 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -4,10 +4,7 @@
static void
Gcompile (char const *pattern, size_t size)
{
- GEAcompile (pattern, size,
- RE_SYNTAX_GREP
- | RE_HAT_LISTS_NOT_NEWLINE
- | RE_NO_EMPTY_RANGES);
+ GEAcompile (pattern, size, RE_SYNTAX_GREP | RE_NO_EMPTY_RANGES);
}
static void
--
1.6.6.1
- [PATCH] grep: remove redundant syntax bit,
Paolo Bonzini <=