csto: add clang-format comments

This commit is contained in:
Jeremy Baxter 2024-03-12 11:52:27 +13:00
parent 01ec87ad8a
commit 50ac27f569

4
csto.c
View file

@ -399,6 +399,8 @@ static int handle_luainit (lua_State *L) {
#else /* }{ */ #else /* }{ */
/* clang-format off */
#define lua_initreadline(L) ((void)L) #define lua_initreadline(L) ((void)L)
#define lua_readline(L,b,p) \ #define lua_readline(L,b,p) \
((void)L, fputs(p, stdout), fflush(stdout), /* show prompt */ \ ((void)L, fputs(p, stdout), fflush(stdout), /* show prompt */ \
@ -406,6 +408,8 @@ static int handle_luainit (lua_State *L) {
#define lua_saveline(L,line) { (void)L; (void)line; } #define lua_saveline(L,line) { (void)L; (void)line; }
#define lua_freeline(L,b) { (void)L; (void)b; } #define lua_freeline(L,b) { (void)L; (void)b; }
/* clang-format on */
#endif /* } */ #endif /* } */
#endif /* } */ #endif /* } */