]> git.pld-linux.org Git - packages/vim.git/blob - 6.3.072
- typo
[packages/vim.git] / 6.3.072
1 To: vim-dev@vim.org
2 Subject: Patch 6.3.072
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.3.072
11 Problem:    Crash in giving substitute message when language is Chinese and
12             encoding is utf-8. (Yongwei)
13 Solution:   Make the msg_buf size larger when using multi-byte.
14 Files:      src/vim.h
15
16
17 *** ../vim-6.3.017/src/vim.h    Sun Dec  5 16:18:46 2004
18 --- src/vim.h   Sun May 15 17:16:06 2005
19 ***************
20 *** 1155,1161 ****
21   #define LSIZE     512         /* max. size of a line in the tags file */
22   
23   #define IOSIZE           (1024+1)     /* file i/o and sprintf buffer size */
24 ! #define MSG_BUF_LEN 80                /* length of buffer for small messages */
25   
26   #if defined(AMIGA) || defined(__linux__) || defined(__QNX__) || defined(__CYGWIN32__) || defined(_AIX)
27   # define TBUFSZ 2048          /* buffer size for termcap entry */
28 --- 1155,1166 ----
29   #define LSIZE     512         /* max. size of a line in the tags file */
30   
31   #define IOSIZE           (1024+1)     /* file i/o and sprintf buffer size */
32
33 ! #ifdef FEAT_MBYTE
34 ! # define MSG_BUF_LEN 240      /* length of buffer for small messages */
35 ! #else
36 ! # define MSG_BUF_LEN 80               /* length of buffer for small messages */
37 ! #endif
38   
39   #if defined(AMIGA) || defined(__linux__) || defined(__QNX__) || defined(__CYGWIN32__) || defined(_AIX)
40   # define TBUFSZ 2048          /* buffer size for termcap entry */
41 *** ../vim-6.3.017/src/version.c        Mon Apr 11 11:52:17 2005
42 --- src/version.c       Fri May 20 13:18:16 2005
43 ***************
44 *** 643,644 ****
45 --- 643,646 ----
46   {   /* Add new patch number below this line */
47 + /**/
48 +     72,
49   /**/
50
51 -- 
52 Females are strictly forbidden to appear unshaven in public.
53                 [real standing law in New Mexico, United States of America]
54
55  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
56 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
57 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
58  \\\     Buy LOTR 3 and help AIDS victims -- http://ICCF.nl/lotr.html   ///
This page took 0.04667 seconds and 3 git commands to generate.