]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.536
- add patches 7.3.619-743
[packages/vim.git] / 7.3.536
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.536
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.536
11 Problem:    When spell checking the German sharp s is not seen as a word
12             character. (Aexl Bender)
13 Solution:   In utf_islower() return true for the sharp s. Note: also need
14             updated spell file for this to take effect.
15 Files:      src/mbyte.c
16
17
18 *** ../vim-7.3.535/src/mbyte.c  2012-06-01 15:20:49.000000000 +0200
19 --- src/mbyte.c 2012-06-01 16:50:41.000000000 +0200
20 ***************
21 *** 2949,2955 ****
22   {
23         {0x61,0x7a,1,-32},
24         {0xb5,0xb5,-1,743},
25 !       {0xe0,0xf6,1,-32},
26         {0xf8,0xfe,1,-32},
27         {0xff,0xff,-1,121},
28         {0x101,0x12f,2,-1},
29 --- 2949,2955 ----
30   {
31         {0x61,0x7a,1,-32},
32         {0xb5,0xb5,-1,743},
33 !       {0xe0,0xf6,1,-32},  /* 0xdf (German sharp s) is not upper-cased */
34         {0xf8,0xfe,1,-32},
35         {0xff,0xff,-1,121},
36         {0x101,0x12f,2,-1},
37 ***************
38 *** 3129,3135 ****
39   utf_islower(a)
40       int               a;
41   {
42 !     return (utf_toupper(a) != a);
43   }
44   
45   /*
46 --- 3129,3136 ----
47   utf_islower(a)
48       int               a;
49   {
50 !     /* German sharp s is lower case but has no upper case equivalent. */
51 !     return (utf_toupper(a) != a) || a == 0xdf;
52   }
53   
54   /*
55 *** ../vim-7.3.535/src/version.c        2012-06-01 15:20:49.000000000 +0200
56 --- src/version.c       2012-06-01 17:45:17.000000000 +0200
57 ***************
58 *** 716,717 ****
59 --- 716,719 ----
60   {   /* Add new patch number below this line */
61 + /**/
62 +     536,
63   /**/
64
65 -- 
66 hundred-and-one symptoms of being an internet addict:
67 16. You step out of your room and realize that your parents have moved and
68     you don't have a clue when it happened.
69
70  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
71 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
72 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
73  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.108941 seconds and 3 git commands to generate.