]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.270
- removed conflict with 6.2.259
[packages/vim.git] / 6.2.270
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.270
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 6.2.270
11 Problem:    Completion in Insert mode, then repeating with ".", doesn't handle
12             composing characters in the completed text. (Raphael Finkel)
13 Solution:   Don't skip over composing chars when adding completed text to the
14             redo buffer.
15 Files:      src/getchar.c
16
17
18 *** ../vim-6.2.269/src/getchar.c        Tue Feb 17 20:44:14 2004
19 --- src/getchar.c       Tue Feb 17 17:47:22 2004
20 ***************
21 *** 550,556 ****
22             /* Handle a special or multibyte character. */
23   #ifdef FEAT_MBYTE
24             if (has_mbyte)
25 !               c = mb_ptr2char_adv(&s);
26             else
27   #endif
28                 c = *s++;
29 --- 550,563 ----
30             /* Handle a special or multibyte character. */
31   #ifdef FEAT_MBYTE
32             if (has_mbyte)
33 !           {
34 !               c = (*mb_ptr2char)(s);
35 !               if (enc_utf8)
36 !                   /* Handle composing chars as well. */
37 !                   s += utf_ptr2len_check(s);
38 !               else
39 !                   s += (*mb_ptr2len_check)(s);
40 !           }
41             else
42   #endif
43                 c = *s++;
44 *** ../vim-6.2.269/src/version.c        Tue Feb 17 21:36:55 2004
45 --- src/version.c       Tue Feb 17 21:46:03 2004
46 ***************
47 *** 639,640 ****
48 --- 639,642 ----
49   {   /* Add new patch number below this line */
50 + /**/
51 +     270,
52   /**/
53
54 -- 
55 hundred-and-one symptoms of being an internet addict:
56 173. You keep tracking down the email addresses of all your friends
57      (even childhood friends).
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
61 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
62  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.031438 seconds and 3 git commands to generate.