From c19026af9ea4ebdda57c1c8383eb93fb959444b9 Mon Sep 17 00:00:00 2001 From: eck Date: Tue, 16 Jan 1990 15:27:24 +0000 Subject: [PATCH] bug fix: defined(aap)1 expanded to 01 --- lang/cem/cpp.ansi/replace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/cem/cpp.ansi/replace.c b/lang/cem/cpp.ansi/replace.c index 5b2719c9a..781ef2069 100644 --- a/lang/cem/cpp.ansi/replace.c +++ b/lang/cem/cpp.ansi/replace.c @@ -195,6 +195,7 @@ expand_defined(repl) if (parens && ch != ')') error(") missing"); if (!parens || ch != ')') UnGetChar(); add2repl(repl, (id && id->id_macro) ? '1' : '0'); + add2repl(repl, ' '); } newarg(args) -- 2.34.1