summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.3.284
blob: c621ced63975b5132a6d0a357c9db5d2c5549210 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
To: vim_dev@googlegroups.com
Subject: Patch 7.3.284
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 7.3.284
Problem:    The str2special() function doesn't handle multi-byte characters
	    properly.
Solution:   Recognize multi-byte characters. (partly by Vladimir Vichniakov)
Files:	    src/getchar.c, src/message.c, src/misc2.c


*** ../vim-7.3.283/src/getchar.c	2011-08-17 17:18:14.000000000 +0200
--- src/getchar.c	2011-08-17 20:11:58.000000000 +0200
***************
*** 3964,3970 ****
      if (*mp->m_str == NUL)
  	msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8));
      else
! 	msg_outtrans_special(mp->m_str, FALSE);
  #ifdef FEAT_EVAL
      if (p_verbose > 0)
  	last_set_msg(mp->m_script_ID);
--- 3964,3980 ----
      if (*mp->m_str == NUL)
  	msg_puts_attr((char_u *)"<Nop>", hl_attr(HLF_8));
      else
!     {
! 	/* Remove escaping of CSI, because "m_str" is in a format to be used
! 	 * as typeahead. */
! 	char_u *s = vim_strsave(mp->m_str);
! 	if (s != NULL)
! 	{
! 	    vim_unescape_csi(s);
! 	    msg_outtrans_special(s, FALSE);
! 	    vim_free(s);
! 	}
!     }
  #ifdef FEAT_EVAL
      if (p_verbose > 0)
  	last_set_msg(mp->m_script_ID);
*** ../vim-7.3.283/src/message.c	2011-03-22 13:07:19.000000000 +0100
--- src/message.c	2011-08-17 18:40:10.000000000 +0200
***************
*** 1547,1562 ****
  	if (IS_SPECIAL(c) || modifiers)	/* special key */
  	    special = TRUE;
      }
-     *sp = str + 1;
  
  #ifdef FEAT_MBYTE
!     /* For multi-byte characters check for an illegal byte. */
!     if (has_mbyte && MB_BYTE2LEN(*str) > (*mb_ptr2len)(str))
      {
! 	transchar_nonprint(buf, c);
! 	return buf;
      }
  #endif
  
      /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
       * Use <Space> only for lhs of a mapping. */
--- 1547,1573 ----
  	if (IS_SPECIAL(c) || modifiers)	/* special key */
  	    special = TRUE;
      }
  
  #ifdef FEAT_MBYTE
!     if (has_mbyte && !IS_SPECIAL(c))
      {
!         int len = (*mb_ptr2len)(str);
! 
! 	/* For multi-byte characters check for an illegal byte. */
! 	if (has_mbyte && MB_BYTE2LEN(*str) > len)
! 	{
! 	    transchar_nonprint(buf, c);
! 	    *sp = str + 1;
! 	    return buf;
! 	}
!         /* Since 'special' is TRUE the multi-byte character 'c' will be
!          * processed by get_special_key_name() */
!         c = (*mb_ptr2char)(str);
!         *sp = str + len;
      }
+     else
  #endif
+ 	*sp = str + 1;
  
      /* Make unprintable characters in <> form, also <M-Space> and <Tab>.
       * Use <Space> only for lhs of a mapping. */
*** ../vim-7.3.283/src/misc2.c	2011-07-27 17:31:42.000000000 +0200
--- src/misc2.c	2011-08-17 20:27:30.000000000 +0200
***************
*** 2754,2759 ****
--- 2754,2760 ----
      int		bit;
      int		key;
      unsigned long n;
+     int		l;
  
      src = *srcp;
      if (src[0] != '<')
***************
*** 2766,2773 ****
  	if (*bp == '-')
  	{
  	    last_dash = bp;
! 	    if (bp[1] != NUL && bp[2] == '>')
! 		++bp;	/* anything accepted, like <C-?> */
  	}
  	if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
  	    bp += 3;	/* skip t_xx, xx may be '-' or '>' */
--- 2767,2783 ----
  	if (*bp == '-')
  	{
  	    last_dash = bp;
! 	    if (bp[1] != NUL)
! 	    {
! #ifdef FEAT_MBYTE
! 		if (has_mbyte)
! 		    l = mb_ptr2len(bp + 1);
! 		else
! #endif
! 		    l = 1;
! 		if (bp[l + 1] == '>')
! 		    bp += l;	/* anything accepted, like <C-?> */
! 	    }
  	}
  	if (bp[0] == 't' && bp[1] == '_' && bp[2] && bp[3])
  	    bp += 3;	/* skip t_xx, xx may be '-' or '>' */
***************
*** 2777,2791 ****
      {
  	end_of_name = bp + 1;
  
- 	if (STRNICMP(src + 1, "char-", 5) == 0 && VIM_ISDIGIT(src[6]))
- 	{
- 	    /* <Char-123> or <Char-033> or <Char-0x33> */
- 	    vim_str2nr(src + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
- 	    *modp = 0;
- 	    *srcp = end_of_name;
- 	    return (int)n;
- 	}
- 
  	/* Which modifiers are given? */
  	modifiers = 0x0;
  	for (bp = src + 1; bp < last_dash; bp++)
--- 2787,2792 ----
***************
*** 2804,2814 ****
  	 */
  	if (bp >= last_dash)
  	{
  	    /*
  	     * Modifier with single letter, or special key name.
  	     */
! 	    if (modifiers != 0 && last_dash[2] == '>')
! 		key = last_dash[1];
  	    else
  	    {
  		key = get_special_key_code(last_dash + 1);
--- 2805,2831 ----
  	 */
  	if (bp >= last_dash)
  	{
+ 	    if (STRNICMP(last_dash + 1, "char-", 5) == 0
+ 						 && VIM_ISDIGIT(last_dash[6]))
+ 	    {
+ 		/* <Char-123> or <Char-033> or <Char-0x33> */
+ 		vim_str2nr(last_dash + 6, NULL, NULL, TRUE, TRUE, NULL, &n);
+ 		*modp = modifiers;
+ 		*srcp = end_of_name;
+ 		return (int)n;
+ 	    }
+ 
  	    /*
  	     * Modifier with single letter, or special key name.
  	     */
! #ifdef FEAT_MBYTE
! 	    if (has_mbyte)
! 		l = mb_ptr2len(last_dash + 1);
! 	    else
! #endif
! 		l = 1;
! 	    if (modifiers != 0 && last_dash[l + 1] == '>')
! 		key = PTR2CHAR(last_dash + 1);
  	    else
  	    {
  		key = get_special_key_code(last_dash + 1);
*** ../vim-7.3.283/src/version.c	2011-08-17 17:18:14.000000000 +0200
--- src/version.c	2011-08-17 20:27:47.000000000 +0200
***************
*** 711,712 ****
--- 711,714 ----
  {   /* Add new patch number below this line */
+ /**/
+     284,
  /**/

-- 
Snoring is prohibited unless all bedroom windows are closed and securely
locked.
		[real standing law in Massachusetts, United States of America]

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///