summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoj Srivastava <srivasta@debian.org>2016-02-13 20:08:38 -0800
committerManoj Srivastava <srivasta@debian.org>2016-02-13 20:08:38 -0800
commit25262edafc22ef4e278eb13dc2b121d26bf55b89 (patch)
tree258e22eeb2c8ab85f349d2ad14737a803c445fcc
parent931ed0a2fdbcf038e268a4e098b9980b64b7826b (diff)
parenta9d44d2157fb7c939766706b36052e7a6522bfff (diff)
Merge branch 'fix-c-plus-comment'
-rw-r--r--src/scan.c2
-rw-r--r--src/skel.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/scan.c b/src/scan.c
index b55df2d..0b032c2 100644
--- a/src/scan.c
+++ b/src/scan.c
@@ -4672,7 +4672,7 @@ static void yyensure_buffer_stack (void)
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
- num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
+ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
diff --git a/src/skel.c b/src/skel.c
index ef657d3..26cc889 100644
--- a/src/skel.c
+++ b/src/skel.c
@@ -2561,7 +2561,7 @@ const char *skel[] = {
" * scanner will even need a stack. We use 2 instead of 1 to avoid an",
" * immediate realloc on the next call.",
" */",
- " num_to_alloc = 1; // After all that talk, this was set to 1 anyways...",
+ " num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */",
" YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc",
" (num_to_alloc * sizeof(struct yy_buffer_state*)",
" M4_YY_CALL_LAST_ARG);",