diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-09 21:08:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-09 21:08:09 +0200 |
commit | 9c8bb7c0e251be2cca409055bd415266f57f013a (patch) | |
tree | 766a067ce29594f5148bd61bee66ae1d33618041 /src/vim9.h | |
parent | cab2767874dca019083aa371a1f3b45385dbd037 (diff) | |
download | vim-git-9c8bb7c0e251be2cca409055bd415266f57f013a.tar.gz |
patch 8.2.0538: Vim9: VAR_PARTIAL is not used during compilationv8.2.0538
Problem: Vim9: VAR_PARTIAL is not used during compilation.
Solution: Remove VAR_PARTIAL.
Diffstat (limited to 'src/vim9.h')
-rw-r--r-- | src/vim9.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vim9.h b/src/vim9.h index 0c59b06ce..57cbfead3 100644 --- a/src/vim9.h +++ b/src/vim9.h @@ -46,7 +46,6 @@ typedef enum { ISN_PUSHS, // push string isn_arg.string ISN_PUSHBLOB, // push blob isn_arg.blob ISN_PUSHFUNC, // push func isn_arg.string - ISN_PUSHPARTIAL, // push partial ? ISN_PUSHCHANNEL, // push channel isn_arg.channel ISN_PUSHJOB, // push channel isn_arg.job ISN_NEWLIST, // push list from stack items, size is isn_arg.number @@ -92,7 +91,6 @@ typedef enum { ISN_COMPARELIST, ISN_COMPAREDICT, ISN_COMPAREFUNC, - ISN_COMPAREPARTIAL, ISN_COMPAREANY, // expression operations |