more fixes for \\n
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@743 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
parent
66650c39cb
commit
499b3c6827
@ -204,7 +204,9 @@ read_quoted_char(int *scan_nextp, int inp_stream, int (*QuotedNxtch)(int))
|
||||
ch = QuotedNxtch(inp_stream);
|
||||
switch (ch) {
|
||||
case 10:
|
||||
return QuotedNxtch(inp_stream);
|
||||
ch = QuotedNxtch(inp_stream);
|
||||
if (ch == '\\') goto restart;
|
||||
return ch;
|
||||
case 'a':
|
||||
return '\a';
|
||||
case 'b':
|
||||
|
Reference in New Issue
Block a user