summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index 114135a17..8ffebf312 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1906,8 +1906,11 @@ typedef struct {
// pointer to the last line obtained with getsourceline()
char_u *eval_tofree;
- // pointer to the last line of an inline function
- char_u *eval_tofree_cmdline;
+ // array with lines of an inline function
+ garray_T eval_tofree_ga;
+
+ // set when "arg" points into the last entry of "eval_tofree_ga"
+ int eval_using_cmdline;
// pointer to the lines concatenated for a lambda.
char_u *eval_tofree_lambda;