diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 21:19:37 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-10 09:14:12 +0100 |
commit | 7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch) | |
tree | 47547273268e887fa59b5529d6afde46772a7254 /src/nvim/lua/stdlib.c | |
parent | d0cb8744d84822209edd0ac242f2400c784e6dc5 (diff) | |
download | rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2 rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip |
refactor(uncrustify): format all c files
Diffstat (limited to 'src/nvim/lua/stdlib.c')
-rw-r--r-- | src/nvim/lua/stdlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/lua/stdlib.c b/src/nvim/lua/stdlib.c index c2ce899a74..e94c61b37c 100644 --- a/src/nvim/lua/stdlib.c +++ b/src/nvim/lua/stdlib.c @@ -28,10 +28,10 @@ #include "nvim/globals.h" #include "nvim/lua/converter.h" #include "nvim/lua/executor.h" +#include "nvim/lua/spell.h" #include "nvim/lua/stdlib.h" #include "nvim/lua/treesitter.h" #include "nvim/lua/xdiff.h" -#include "nvim/lua/spell.h" #include "nvim/macros.h" #include "nvim/map.h" #include "nvim/memline.h" @@ -411,7 +411,7 @@ int nlua_getvar(lua_State *lstate) dictitem_T *di = tv_dict_find(dict, name, (ptrdiff_t)len); if (di == NULL && dict == &globvardict) { // try to autoload script if (!script_autoload(name, len, false) || aborting()) { - return 0; // nil + return 0; // nil } di = tv_dict_find(dict, name, (ptrdiff_t)len); } |