fix quoting of \

This commit is contained in:
Vítor Santos Costa 2013-08-09 18:36:45 -05:00
parent d575ca8391
commit 0fd06d8cf1
1 changed files with 2 additions and 0 deletions

View File

@ -284,6 +284,8 @@ read_quoted_char(int *scan_nextp, IOSTREAM *inp_stream)
switch (ch) {
case 10:
return 0;
case '\\':
return '\\';
case 'a':
return '\a';
case 'b':