From c8afae83c9f5c48ea18995b4582cfcc311a8f828 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 20 Aug 1987 15:44:45 +0000 Subject: [PATCH] fixed bug with quotes --- util/cpp/preprocess.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util/cpp/preprocess.c b/util/cpp/preprocess.c index 6d2b2095d..7b00160a6 100644 --- a/util/cpp/preprocess.c +++ b/util/cpp/preprocess.c @@ -156,6 +156,7 @@ preprocess(fn) ++LineNumber; lineno++; } + else if (c == '\'') continue; } } while (c != stopc); -- 2.34.1