From: eck Date: Tue, 16 Jan 1990 15:27:24 +0000 (+0000) Subject: bug fix: defined(aap)1 expanded to 01 X-Git-Tag: release-5-5~1936 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=c19026af9ea4ebdda57c1c8383eb93fb959444b9;p=ack.git bug fix: defined(aap)1 expanded to 01 --- 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)