diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-06-12 21:01:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-12 21:01:16 +0200 |
commit | feba56af7d032c948a78c21735502bebe45f8361 (patch) | |
tree | e8c240f53b4448aeb7352a59fcab6de58ee298fc /src/nvim/ex_docmd.c | |
parent | 2de0d6714497e4259f467516e52852c1016d5318 (diff) | |
parent | 612944c5863caabc7b71b66c9deb73a983c69803 (diff) | |
download | rneovim-feba56af7d032c948a78c21735502bebe45f8361.tar.gz rneovim-feba56af7d032c948a78c21735502bebe45f8361.tar.bz2 rneovim-feba56af7d032c948a78c21735502bebe45f8361.zip |
Merge pull request #18936 from bfredl/apioption
refactor(api): reorganize code
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 0d69578c26..8c6a32ee01 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -90,9 +90,6 @@ static bool ex_pressedreturn = false; garray_T ucmds = { 0, 0, sizeof(ucmd_T), 4, NULL }; -// Whether a command index indicates a user command. -#define IS_USER_CMDIDX(idx) ((int)(idx) < 0) - // Struct for storing a line inside a while/for loop typedef struct { char *line; // command line |