increment pointer by runelen(delim) not 1

This commit is contained in:
Evan Gates 2015-03-12 14:46:30 -07:00 committed by sin
parent c82425e128
commit ad6da18ca6
1 changed files with 2 additions and 2 deletions

4
sed.c
View File

@ -860,7 +860,7 @@ get_s_arg(Cmd *c, char *s)
/* FIXME: different eregcomp that calls fatal */
eregcomp(c->u.s.re, s, 0);
}
s = p + 1;
s = p + runelen(delim);
}
/* Replace */
@ -894,7 +894,7 @@ get_s_arg(Cmd *c, char *s)
if (gflags.s_cont)
return p;
s = p + 1;
s = p + runelen(delim);
/* Flags */
p = semicolon_arg(s = chomp(s));