Skip to content

Commit

Permalink
wmake: revert back old processing of # character as comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak authored and GateLinker committed Oct 1, 2024
1 parent 78c953e commit 4d3fa54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bld/wmake/c/mstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down

0 comments on commit 4d3fa54

Please sign in to comment.