diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-21 22:09:44 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-07-21 22:09:44 +0200 |
commit | b0e9b72915a87121aabf21d4e382e16e0a9a5175 (patch) | |
tree | f260550026cd79fa5ac59ebe0fa7ff769f0a6d94 /editors | |
parent | 26cd90c7fd32f2ef252acb146f8b9152e55346ec (diff) | |
download | busybox-b0e9b72915a87121aabf21d4e382e16e0a9a5175.tar.gz |
sed: fix matching of newlines by $
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index e625a0965..3a0d917aa 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -330,7 +330,7 @@ static int get_address(const char *my_str, int *linenum, regex_t ** regex) next = index_of_next_unescaped_regexp_delim(delimiter, ++pos); temp = copy_parsing_escapes(pos, next); *regex = xzalloc(sizeof(regex_t)); - xregcomp(*regex, temp, G.regex_type|REG_NEWLINE); + xregcomp(*regex, temp, G.regex_type); free(temp); /* Move position to next character after last delimiter */ pos += (next+1); |