comparison src/proto/misc2.pro @ 2935:bf283e37792b v7.3.240

updated for version 7.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)
author Bram Moolenaar <bram@vim.org>
date Thu, 07 Jul 2011 16:20:52 +0200
parents 0bef86c5c985
children 75217982ea46
comparison
equal deleted inserted replaced
2934:ba9df996e47c 2935:bf283e37792b
56 void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize)); 56 void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize));
57 int ga_grow __ARGS((garray_T *gap, int n)); 57 int ga_grow __ARGS((garray_T *gap, int n));
58 char_u *ga_concat_strings __ARGS((garray_T *gap)); 58 char_u *ga_concat_strings __ARGS((garray_T *gap));
59 void ga_concat __ARGS((garray_T *gap, char_u *s)); 59 void ga_concat __ARGS((garray_T *gap, char_u *s));
60 void ga_append __ARGS((garray_T *gap, int c)); 60 void ga_append __ARGS((garray_T *gap, int c));
61 void append_ga_line __ARGS((garray_T *gap));
61 int name_to_mod_mask __ARGS((int c)); 62 int name_to_mod_mask __ARGS((int c));
62 int simplify_key __ARGS((int key, int *modifiers)); 63 int simplify_key __ARGS((int key, int *modifiers));
63 int handle_x_keys __ARGS((int key)); 64 int handle_x_keys __ARGS((int key));
64 char_u *get_special_key_name __ARGS((int c, int modifiers)); 65 char_u *get_special_key_name __ARGS((int c, int modifiers));
65 int trans_special __ARGS((char_u **srcp, char_u *dst, int keycode)); 66 int trans_special __ARGS((char_u **srcp, char_u *dst, int keycode));