diff options
Diffstat (limited to 'node.c')
-rw-r--r-- | node.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -451,6 +451,8 @@ make_str_node(const char *s, size_t len, int flags) if (c < 0) { if (do_lint) lintwarn(_("backslash at end of string")); + if ((flags & ELIDE_BACK_NL) != 0) + continue; c = '\\'; } *ptm++ = c; |