summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-28 15:51:16 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-28 15:51:16 +0200
commitd5053d015a957b343ad9c9e45e0abd2978f10cf0 (patch)
tree4154d4cd881536a310adec7425bcb9e1c05da85d /src/globals.h
parent06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03 (diff)
patch 8.2.1079: Vim9: no line break allowed in a while loopv8.2.1079
Problem: Vim9: no line break allowed in a while loop. Solution: Update stored loop lines when finding line breaks.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 81903818b0..19c6837ce2 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1885,7 +1885,7 @@ EXTERN listitem_T range_list_item;
// Passed to an eval() function to enable evaluation.
EXTERN evalarg_T EVALARG_EVALUATE
# ifdef DO_INIT
- = {EVAL_EVALUATE, NULL, {0, 0, 0, 0, NULL}, NULL}
+ = {EVAL_EVALUATE, NULL, NULL, {0, 0, 0, 0, NULL}, NULL}
# endif
;
#endif