diff src/proto/misc2.pro @ 9869:989d44d35a66 v7.4.2209

commit https://github.com/vim/vim/commit/35a4cfa200917dd171b1fff3cd5b6cee9add673d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 14 16:07:48 2016 +0200 patch 7.4.2209 Problem: Cannot map <M-">. (Stephen Riehm) Solution: Solve the memory access problem in another way. (Dominique Pelle) Allow for using <M-\"> in a string.
author Christian Brabandt <cb@256bit.org>
date Sun, 14 Aug 2016 16:15:06 +0200
parents 25c562442f8c
children cfb38b57d407
line wrap: on
line diff
--- a/src/proto/misc2.pro
+++ b/src/proto/misc2.pro
@@ -64,8 +64,8 @@ int name_to_mod_mask(int c);
 int simplify_key(int key, int *modifiers);
 int handle_x_keys(int key);
 char_u *get_special_key_name(int c, int modifiers);
-int trans_special(char_u **srcp, char_u *dst, int keycode);
-int find_special_key(char_u **srcp, int *modp, int keycode, int keep_x_key);
+int trans_special(char_u **srcp, char_u *dst, int keycode, int in_string);
+int find_special_key(char_u **srcp, int *modp, int keycode, int keep_x_key, int in_string);
 int extract_modifiers(int key, int *modp);
 int find_special_key_in_table(int c);
 int get_special_key_code(char_u *name);