From 2c450be9e8f944b648ea4942833312aa29103c97 Mon Sep 17 00:00:00 2001 From: Michael Mogenson Date: Sat, 19 Mar 2022 12:22:42 -0400 Subject: [PATCH] nxstyle: ignore mixed-case identifiers for Lua types --- tools/nxstyle.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/nxstyle.c b/tools/nxstyle.c index 846780ea22..9eb6c66179 100644 --- a/tools/nxstyle.c +++ b/tools/nxstyle.c @@ -203,6 +203,8 @@ static const char *g_white_prefix[] = "ub32", /* Ref: include/fixedmath.h */ "ASCII_", /* Ref: include/nuttx/ascii.h */ "XK_", /* Ref: include/input/X11_keysymdef.h */ + "lua_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lua.h */ + "luaL_", /* Ref: apps/interpreters/lua/lua-5.x.x/src/lauxlib.h */ NULL };