From 406b7db0d24035d0f51ba243192d4906660ff148 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 21 Jul 2013 19:08:36 -0400 Subject: use c89 comments here --- Keyword.xs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Keyword.xs b/Keyword.xs index 249121e..8131436 100644 --- a/Keyword.xs +++ b/Keyword.xs @@ -41,12 +41,13 @@ static OP *parser_callback(pTHX_ GV *namegv, SV *psobj, U32 *flagsp) SV *statement = NULL; I32 count; - // call the parser callback - // it should take no arguments and return a coderef which, when called, - // produces the arguments to the keyword function - // the optree we want to generate is for something like - // mykeyword($code->()) - // where $code is the thing returned by the parser function + /* call the parser callback + * it should take no arguments and return a coderef which, when called, + * produces the arguments to the keyword function + * the optree we want to generate is for something like + * mykeyword($code->()) + * where $code is the thing returned by the parser function + */ PUSHMARK(SP); count = call_sv(psobj, G_ARRAY); -- cgit v1.2.3-54-g00ecf