diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-05-09 22:50:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-05-09 22:50:08 +0200 |
commit | 09689a02840be40fa7bb10b1921fb5bc5b2908f1 (patch) | |
tree | 4aced60f6702ce56232c9ee70bf977234e054c39 /src/vim.h | |
parent | 396f3138ca83ce844679143861f544070683d479 (diff) | |
download | vim-git-09689a02840be40fa7bb10b1921fb5bc5b2908f1.tar.gz |
patch 8.2.0725: Vim9: cannot call a function declared later in Vim9 scriptv8.2.0725
Problem: Vim9: cannot call a function declared later in Vim9 script.
Solution: Make two passes through the script file.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2133,6 +2133,7 @@ typedef enum { // Flags for assignment functions. #define LET_IS_CONST 1 // ":const" #define LET_NO_COMMAND 2 // "var = expr" without ":let" or ":const" +#define LET_REDEFINE 4 // variable can be redefined later #include "ex_cmds.h" // Ex command defines #include "spell.h" // spell checking stuff |