From: Vern Paxson Date: Fri, 16 Mar 1990 16:52:00 +0000 (+0000) Subject: hack for NUL's. X-Git-Tag: flex-2-5-5b~546 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd6b6a7fad0811263f313e2c0ffabe8e24425370;p=flex hack for NUL's. --- diff --git a/nfa.c b/nfa.c index 1d15a58..44067a2 100644 --- a/nfa.c +++ b/nfa.c @@ -642,7 +642,8 @@ int sym; else { if ( useecs ) - mkechar( sym, nextecm, ecgroup ); + /* map NUL's to csize */ + mkechar( sym ? sym : csize, nextecm, ecgroup ); } return ( lastnfa );