summaryrefslogtreecommitdiffstats
path: root/src/proto
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-07-07 16:20:52 +0200
committerBram Moolenaar <Bram@vim.org>2011-07-07 16:20:52 +0200
commit4b9669f1dc0b1f30a378624810ca144b9ca49a8e (patch)
tree0ece3d6ce68a283ebb37ccf0334a8a37c510e53c /src/proto
parent03a807aaf45e5f85a10cd3b0c4e4913d170f8f5a (diff)
updated for version 7.3.240v7.3.240
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/misc2.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/misc2.pro b/src/proto/misc2.pro
index a22ba7f0ae..d8d3cc374b 100644
--- a/src/proto/misc2.pro
+++ b/src/proto/misc2.pro
@@ -58,6 +58,7 @@ int ga_grow __ARGS((garray_T *gap, int n));
char_u *ga_concat_strings __ARGS((garray_T *gap));
void ga_concat __ARGS((garray_T *gap, char_u *s));
void ga_append __ARGS((garray_T *gap, int c));
+void append_ga_line __ARGS((garray_T *gap));
int name_to_mod_mask __ARGS((int c));
int simplify_key __ARGS((int key, int *modifiers));
int handle_x_keys __ARGS((int key));