cleanup NBSP characters in comments (#10555)

Replace NBSP character (0xC2 0xA0) with space (0x20).

Looks like that was originally added due to misconfigured editor which seems to have been fixed by now.
This commit is contained in:
Kaige Ye
2023-03-15 17:05:42 +08:00
committed by GitHub
parent 9344f654c6
commit 5360350e4a
5 changed files with 39 additions and 39 deletions

View File

@@ -1562,8 +1562,8 @@ static void luaMaskCountHook(lua_State *lua, lua_Debug *ar) {
/*
* Set the hook to invoke all the time so the user
         * will not be able to catch the error with pcall and invoke
         * pcall again which will prevent the script from ever been killed
* will not be able to catch the error with pcall and invoke
* pcall again which will prevent the script from ever been killed
*/
lua_sethook(lua, luaMaskCountHook, LUA_MASKLINE, 0);