diff options
| author | ZyX <kp-pav@yandex.ru> | 2017-04-11 01:09:36 +0300 |
|---|---|---|
| committer | ZyX <kp-pav@yandex.ru> | 2017-04-11 01:09:36 +0300 |
| commit | f98a3d85ed2f34a62300097fd30b393a3b3be393 (patch) | |
| tree | 41562adb208723f786454ae2ddfa0bb02521318d /src/nvim/viml/executor/executor.h | |
| parent | 1751ec192d860f2591d18c4aad4248b5ab786cec (diff) | |
| download | rneovim-f98a3d85ed2f34a62300097fd30b393a3b3be393.tar.gz rneovim-f98a3d85ed2f34a62300097fd30b393a3b3be393.tar.bz2 rneovim-f98a3d85ed2f34a62300097fd30b393a3b3be393.zip | |
lua: Move files from src/nvim/viml/executor to src/nvim/lua
Diffstat (limited to 'src/nvim/viml/executor/executor.h')
| -rw-r--r-- | src/nvim/viml/executor/executor.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/nvim/viml/executor/executor.h b/src/nvim/viml/executor/executor.h deleted file mode 100644 index 648bb73785..0000000000 --- a/src/nvim/viml/executor/executor.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef NVIM_VIML_EXECUTOR_EXECUTOR_H -#define NVIM_VIML_EXECUTOR_EXECUTOR_H - -#include <lua.h> - -#include "nvim/api/private/defs.h" -#include "nvim/func_attr.h" -#include "nvim/eval/typval.h" -#include "nvim/ex_cmds_defs.h" - -// Generated by msgpack-gen.lua -void nlua_add_api_functions(lua_State *lstate) REAL_FATTR_NONNULL_ALL; - -#define set_api_error(s, err) \ - do { \ - Error *err_ = (err); \ - err_->type = kErrorTypeException; \ - err_->set = true; \ - memcpy(&err_->msg[0], s, sizeof(s)); \ - } while (0) - -#ifdef INCLUDE_GENERATED_DECLARATIONS -# include "viml/executor/executor.h.generated.h" -#endif -#endif // NVIM_VIML_EXECUTOR_EXECUTOR_H |