diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-11 10:18:53 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-11 10:18:53 +0300 |
commit | 9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17 (patch) | |
tree | 58be276d0d77018eef720e4c3d5d24ebf3d820c1 /src/nvim/lua/executor.h | |
parent | acd9ed8d8397cbab5c7300b06beda4daa053e9e2 (diff) | |
download | rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.tar.gz rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.tar.bz2 rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.zip |
lua: Fix header guards
Diffstat (limited to 'src/nvim/lua/executor.h')
-rw-r--r-- | src/nvim/lua/executor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/lua/executor.h b/src/nvim/lua/executor.h index 22e55a56d3..0cbf290f64 100644 --- a/src/nvim/lua/executor.h +++ b/src/nvim/lua/executor.h @@ -1,5 +1,5 @@ -#ifndef NVIM_VIML_EXECUTOR_EXECUTOR_H -#define NVIM_VIML_EXECUTOR_EXECUTOR_H +#ifndef NVIM_LUA_EXECUTOR_H +#define NVIM_LUA_EXECUTOR_H #include <lua.h> @@ -22,4 +22,4 @@ void nlua_add_api_functions(lua_State *lstate) REAL_FATTR_NONNULL_ALL; #ifdef INCLUDE_GENERATED_DECLARATIONS # include "lua/executor.h.generated.h" #endif -#endif // NVIM_VIML_EXECUTOR_EXECUTOR_H +#endif // NVIM_LUA_EXECUTOR_H |