Discard newline when backslash is the last character before new-line in a string constant

This commit is contained in:
Jaroslav Kysela 2001-11-08 14:58:51 +00:00
parent 580ca0e668
commit 91f0887bdd

View file

@ -346,6 +346,8 @@ static int get_delimstring(char **string, int delim, input_t *input)
c = get_quotedchar(input);
if (c < 0)
return c;
if (c == '\n')
continue;
break;
default:
if (c == delim) {