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 | |
parent | acd9ed8d8397cbab5c7300b06beda4daa053e9e2 (diff) | |
download | rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.tar.gz rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.tar.bz2 rneovim-9bf15ca3fa2aa5f1a533b7b1598b6e3937fb1b17.zip |
lua: Fix header guards
-rw-r--r-- | src/nvim/lua/converter.h | 6 | ||||
-rw-r--r-- | src/nvim/lua/executor.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/lua/converter.h b/src/nvim/lua/converter.h index 49f6ac4016..542c56ea3e 100644 --- a/src/nvim/lua/converter.h +++ b/src/nvim/lua/converter.h @@ -1,5 +1,5 @@ -#ifndef NVIM_VIML_EXECUTOR_CONVERTER_H -#define NVIM_VIML_EXECUTOR_CONVERTER_H +#ifndef NVIM_LUA_CONVERTER_H +#define NVIM_LUA_CONVERTER_H #include <lua.h> #include <stdbool.h> @@ -12,4 +12,4 @@ #ifdef INCLUDE_GENERATED_DECLARATIONS # include "lua/converter.h.generated.h" #endif -#endif // NVIM_VIML_EXECUTOR_CONVERTER_H +#endif // NVIM_LUA_CONVERTER_H 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 |