From ea10f794cdc1557855539cfe8e17205b4ad28093 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 10 Aug 1990 17:57:32 +0000 Subject: [PATCH] fixed bug concerning back-slashes within strings --- util/cpp/preprocess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cpp/preprocess.c b/util/cpp/preprocess.c index 34c07698..4fd7bcf3 100644 --- a/util/cpp/preprocess.c +++ b/util/cpp/preprocess.c @@ -163,7 +163,7 @@ preprocess(fn) ++LineNumber; lineno++; } - else if (c == '\'') escaped = 1; + else escaped = 1; } } while (escaped || c != stopc); echo(c);