Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-03-18 11:37:57 +0300
committerGlenn L McGrath <bug1@ihug.co.nz>2003-03-18 11:37:57 +0300
commite01f9662a5bd5d91be4f6b3941b57fff73cd5af1 (patch)
tree40624208db373d3abf5c89ec3fd09d29890290f3
parent2971ef1730db326e20e84ae8882d326f5aa09235 (diff)
Match newlines, this fixes matching of ^ or $ when there is a '\n' in the pattern being matched. This fixes cases when the N command is used.
-rw-r--r--editors/sed.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 7ff81da79..8bd627a9c 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -212,7 +212,8 @@ static int get_address(char *delimiter, char *my_str, int *linenum, regex_t **re
static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr)
{
- int oldidx, cflags = REG_NEWLINE;
+ int oldidx;
+ int cflags = 0;
char *match;
int idx = 0;
int j;