From 6f8b90b131b07622ba3edfba9fb6ec6a63b4a861 Mon Sep 17 00:00:00 2001 From: vsc Date: Mon, 13 Jan 2003 13:13:54 +0000 Subject: [PATCH] fix \nl in strings. git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@740 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/scanner.c b/C/scanner.c index bba1d7a35..4418a8920 100644 --- a/C/scanner.c +++ b/C/scanner.c @@ -204,7 +204,7 @@ read_quoted_char(int *scan_nextp, int inp_stream, int (*QuotedNxtch)(int)) ch = QuotedNxtch(inp_stream); switch (ch) { case 10: - goto restart; + return QuotedNxtch(inp_stream); case 'a': return '\a'; case 'b':