Fix support for backslash-newline in double quotes in unescape functions. Makes tests pass

again.
This commit is contained in:
ridiculousfish 2013-11-26 01:39:16 -08:00
parent ded64758d5
commit 5b3397359f

View file

@ -1594,6 +1594,7 @@ static bool unescape_string_internal(const wchar_t * const input, const size_t i
{
/* Swallow newline */
to_append = NOT_A_WCHAR;
input_position += 1; /* Skip over the backslash */
break;
}