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:
vsc 2003-01-20 15:13:21 +00:00
parent 66650c39cb
commit 499b3c6827

View File

@ -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':