Fix whitespace errors

This commit is contained in:
Francesco Abbate 2021-06-11 14:57:41 +02:00
parent 704a8dea09
commit 2af92e9af1
1 changed files with 3 additions and 3 deletions

View File

@ -538,11 +538,11 @@ static int f_fuzzy_match(lua_State *L) {
bool files = false;
if (lua_gettop(L) > 2 && lua_isboolean(L,3))
files = lua_toboolean(L, 3);
int score = 0;
int run = 0;
// Match things *backwards*. This allows for better matching on filenames than the above
// Match things *backwards*. This allows for better matching on filenames than the above
// function. For example, in the lite project, opening "renderer" has lib/font_render/build.sh
// as the first result, rather than src/renderer.c. Clearly that's wrong.
if (files) {