Commit 2e420a17 by Richard Kenner

(handle_directive): Fix typo...

(handle_directive): Fix typo: '\' caused next char to be copied
blindly, which was an error if !traditional and if the next char was
newline or one of <\'"/.

From-SVN: r8804
parent 3c86a619
......@@ -3740,7 +3740,7 @@ handle_directive (ip, op)
*cp++ = *xp++;
SKIP_WHITE_SPACE (xp);
}
} else {
} else if (traditional && xp < bp) {
*cp++ = *xp++;
}
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment