From e01f9662a5bd5d91be4f6b3941b57fff73cd5af1 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Tue, 18 Mar 2003 08:37:57 +0000 Subject: 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. --- editors/sed.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/sed.c b/editors/sed.c index 7ff81da..8bd627a 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; -- cgit v1.1