summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-04-21 23:30:15 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-21 23:30:15 +0100
commit1fc6ea9bf3548b578676331f5eac1f7e0611c268 (patch)
treecbbabd2cece75b8657356b2b1716372daeee94ce /src/ex_getln.c
parent66e13aedc7986c83644d537a8fdd3cb006507678 (diff)
patch 8.2.4804: expression in heredoc doesn't work for compiled functionv8.2.4804
Problem: Expression in heredoc doesn't work for compiled function. Solution: Implement compiling the heredoc expressions. (Yegappan Lakshmanan, closes #10232)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index c351cf2566..a97024b351 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4605,7 +4605,7 @@ script_get(exarg_T *eap UNUSED, char_u *cmd UNUSED)
return NULL;
cmd += 2;
- l = heredoc_get(eap, cmd, TRUE);
+ l = heredoc_get(eap, cmd, TRUE, FALSE);
if (l == NULL)
return NULL;