From c7a5b07da7f6a52dcc1a922ecc625abcd480a7d5 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 34c076981..4fd7bcf34 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); -- 2.34.1