From: viktor.shepel Date: Thu, 4 May 2017 11:55:27 +0000 (+0300) Subject: doc: Correct typo in C code sample in manual X-Git-Tag: v2.6.4~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7889866f5806f3597122a7f052230128dd98d371;p=flex doc: Correct typo in C code sample in manual --- diff --git a/doc/flex.texi b/doc/flex.texi index 65ae419..bccab1e 100644 --- a/doc/flex.texi +++ b/doc/flex.texi @@ -2182,7 +2182,7 @@ manages its own input buffer stack manually (instead of letting flex do it). } <> { - if ( --include_stack_ptr 0 ) + if ( --include_stack_ptr == 0 ) { yyterminate(); }