aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common.c b/common.c
index 1e68908c..c0d43cef 100644
--- a/common.c
+++ b/common.c
@@ -1172,6 +1172,7 @@ wchar_t *unescape( const wchar_t * orig, int unescape_special )
{
case '\\':
case L'\'':
+ case L'\n':
{
in[out_pos]=in[in_pos];
break;
@@ -1231,6 +1232,7 @@ wchar_t *unescape( const wchar_t * orig, int unescape_special )
case '\\':
case L'$':
case '"':
+ case '\n':
{
in[out_pos]=in[in_pos];
break;