From: ceriel Date: Tue, 7 Apr 1987 09:08:28 +0000 (+0000) Subject: undid a fix. Actually, the fix was wrong X-Git-Tag: release-5-5~4220 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e98dffbb1db938a7d66888b06bdf12c7d76b3539;p=ack.git undid a fix. Actually, the fix was wrong --- diff --git a/util/cpp/domacro.c b/util/cpp/domacro.c index 3788c61f0..dd54944eb 100644 --- a/util/cpp/domacro.c +++ b/util/cpp/domacro.c @@ -307,10 +307,10 @@ do_define() ch = skipspaces(ch); /* find first character of the text */ assert(ch != EOI); if (class(ch) == STNL) { - /* Treat `#define something' as `#define something "1"' + /* Treat `#define something' as `#define something ""' */ - repl_text = "1"; - length = 1; + repl_text = ""; + length = 0; } else { PushBack();