MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / l_message

Function l_message

third-party/lua-5.5.0/src/lua.c:111–114  ·  view source on GitHub ↗

** Prints an error message, adding the program name in front of it ** (if present) */

Source from the content-addressed store, hash-verified

109** (if present)
110*/
111static void l_message (const char *pname, const char *msg) {
112 if (pname) lua_writestringerror("%s: ", pname);
113 lua_writestringerror("%s\n", msg);
114}
115
116
117/*

Callers 3

reportFunction · 0.70
l_printFunction · 0.70
mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected