summaryrefslogtreecommitdiffstats
path: root/src/proto/charset.pro
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2024-04-12 18:48:35 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-12 18:53:08 +0200
commite74cad3321ce1dcefc1fc64f617511275b6cd930 (patch)
treeb29c4a7843c748750a448800846bbff1b1dfde19 /src/proto/charset.pro
parenta1dcd76ce791b5b8bd093765a99b71aa163300a5 (diff)
patch 9.1.0312: heredocs are not supported for :commandsv9.1.0312
Problem: heredocs are not supported for :commands (@balki) Solution: Add heredoc support (Yegappan Lakshmanan) fixes: #14491 closes: #14528 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/proto/charset.pro')
-rw-r--r--src/proto/charset.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/charset.pro b/src/proto/charset.pro
index a74731931d..a4f6c453d9 100644
--- a/src/proto/charset.pro
+++ b/src/proto/charset.pro
@@ -61,6 +61,7 @@ int vim_isalpha(int c);
int vim_toupper(int c);
int vim_tolower(int c);
char_u *skiptowhite(char_u *p);
+char_u *skiptowhite_or_nl(char_u *p);
char_u *skiptowhite_esc(char_u *p);
long getdigits(char_u **pp);
long getdigits_quoted(char_u **pp);