]> granicus.if.org Git - flex/commitdiff
add %{...%} block to example in manual
authorWill Estes <westes575@gmail.com>
Wed, 5 Aug 2015 19:27:37 +0000 (15:27 -0400)
committerWill Estes <westes575@gmail.com>
Wed, 5 Aug 2015 19:27:37 +0000 (15:27 -0400)
doc/flex.texi

index 825add31a8edd869eb024a5e1c8f6b09f602a7b5..c7edce69ef7485678636be4a61bcdc25dfd327bc 100644 (file)
@@ -4910,8 +4910,10 @@ custom allocator through @code{yyextra}.
 %option reentrant
 
 /* Initialize the allocator. */
+%{
 #define YY_EXTRA_TYPE  struct allocator*
 #define YY_USER_INIT  yyextra = allocator_create();
+%}
 
 %%
 .|\n   ;