commit | 985116ae0b7b3ef17e0c0ea2669068dd6b3b39c7 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 12 17:31:09 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 12 17:31:09 2020 +0200 |
tree | 15ce69f1bacb283465128d638a064046041b9230 | |
parent | eb6880b6eb7c4631f6103575c0d1336b149348c1 [diff] [blame] |
patch 8.2.1191: Vim9: crash when function calls itself Problem: Vim9: crash when function calls itself. Solution: Add status UF_COMPILING. (closes #6441)
diff --git a/src/structs.h b/src/structs.h index bdc763b..4a0c10a 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -1539,6 +1539,7 @@ typedef enum { UF_NOT_COMPILED, UF_TO_BE_COMPILED, + UF_COMPILING, UF_COMPILED } def_status_T;