From deb22e408ea9a835540fec58c7776cc677732669 Mon Sep 17 00:00:00 2001 From: Jiri Malak Date: Mon, 30 Sep 2024 00:45:51 +0200 Subject: [PATCH] wmake: revert back old processing of # character as comment --- bld/wmake/c/mstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bld/wmake/c/mstream.c b/bld/wmake/c/mstream.c index 7c42c546a1..d9db638ffc 100644 --- a/bld/wmake/c/mstream.c +++ b/bld/wmake/c/mstream.c @@ -236,7 +236,7 @@ STATIC bool fillBuffer( void ) static bool needQuotes( const char *name ) /****************************************/ { - return( strchr( name, ' ' ) != NULL || strchr( name, '#' ) != NULL ); + return( strchr( name, ' ' ) != NULL ); } #ifdef __WATCOMC__