@@ -140,7 +140,7 @@ bool ExtensionPoint::QueryVariableGeneric(lua_State *L, Idx<Variable> variable,
140140 result = lua_toboolean (L, -1 );
141141 } else {
142142 const auto err = lua_tostring (L, -1 );
143- printf (" query error in %s: %s\n " , queryFunction, err);
143+ printf (" query error in %s: %s\n " , queryFunction, err);
144144 }
145145 }
146146 }
@@ -150,11 +150,11 @@ bool ExtensionPoint::QueryVariableGeneric(lua_State *L, Idx<Variable> variable,
150150}
151151
152152bool ExtensionPoint::QueryVariable (lua_State *L, Idx<Variable> variable, const char *typeName, int object, int depth) {
153- return QueryVariableGeneric (L, variable, typeName, object, depth, " queryVariable" );
153+ return QueryVariableGeneric (L, variable, typeName, object, depth, " queryVariable" );
154154}
155155
156156bool ExtensionPoint::QueryVariableCustom (lua_State *L, Idx<Variable> variable, const char *typeName, int object, int depth) {
157- return QueryVariableGeneric (L, variable, typeName, object, depth, " queryVariableCustom" );
157+ return QueryVariableGeneric (L, variable, typeName, object, depth, " queryVariableCustom" );
158158}
159159
160160lua_State *ExtensionPoint::QueryParentThread (lua_State *L) {
0 commit comments