Skip to content

Commit

Permalink
Removed new style comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Nov 13, 2011
1 parent d22c162 commit e04cc61
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lunamark.c
Expand Up @@ -15,7 +15,7 @@ int main( int argc, char *argv[] )

lua_State *L = lua_open();

// command line args
/* command line args */
lua_newtable(L);
if (argc > 0) {
int i;
Expand All @@ -27,7 +27,7 @@ int main( int argc, char *argv[] )
}
lua_setglobal(L, "arg");

// load the libs
/* load the libs */
luaL_openlibs(L);
luaopen_lpeg(L);
luaopen_unicode(L);
Expand All @@ -38,8 +38,6 @@ int main( int argc, char *argv[] )
lua_error(L);
}

// printf("\nI am done with Lua in C.\n");

lua_close(L);

return 0;
Expand Down

0 comments on commit e04cc61

Please sign in to comment.