b8bafaf
commit 07d89829cce4527c7614a34642d4b2c2ef5d6005
b8bafaf
Author: Will Estes <westes575@gmail.com>
b8bafaf
Date:   Fri Dec 11 09:45:14 2015 -0500
b8bafaf
b8bafaf
    Commented in C style in skeleton; fixed sf#195
b8bafaf
b8bafaf
diff --git a/src/flex.skl b/src/flex.skl
b8bafaf
index b63c8c8..40287b6 100644
b8bafaf
--- a/src/flex.skl
b8bafaf
+++ b/src/flex.skl
b8bafaf
@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
b8bafaf
 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
b8bafaf
 		 * immediate realloc on the next call.
b8bafaf
          */
b8bafaf
-		num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
b8bafaf
+      num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
b8bafaf
 		YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
b8bafaf
 								(num_to_alloc * sizeof(struct yy_buffer_state*)
b8bafaf
 								M4_YY_CALL_LAST_ARG);