sed: allow whitespace after ! negation (thanks k0ga)

This commit is contained in:
cinap_lenrek 2020-02-19 19:26:43 +01:00
parent 234aafb38d
commit 219741ac01

View file

@ -308,10 +308,10 @@ comploop:
} else
rep->ad2.type = A_NONE;
}
swit:
while(*cp == L' ' || *cp == L'\t')
cp++;
swit:
switch(*cp++) {
default:
quit("Unrecognized command: %S", linebuf);