summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorviktor.shepel <shepelvictor@bigmir.net>2017-05-04 14:55:27 +0300
committerWill Estes <westes575@gmail.com>2017-05-06 10:56:29 -0400
commit7889866f5806f3597122a7f052230128dd98d371 (patch)
treedb17bd3ed366de20d82f86b775bfb45542945cf2 /doc
parente5c7ad3aecfff5caa3e48ad699057e6b630288e2 (diff)
doc: Correct typo in C code sample in manual
Diffstat (limited to 'doc')
-rw-r--r--doc/flex.texi2
1 files changed, 1 insertions, 1 deletions
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).
}
<<EOF>> {
- if ( --include_stack_ptr 0 )
+ if ( --include_stack_ptr == 0 )
{
yyterminate();
}