]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.016
- updated to 0.7.3
[packages/vim.git] / 7.0.016
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.016
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 7.0.016
11 Problem:    Printing doesn't work for "dec-mcs" encoding.
12 Solution:   Add "dec-mcs", "mac-roman" and "hp-roman8" to the list of
13             recognized 8-bit encodings. (Mike Williams)
14 Files:      src/mbyte.c
15
16
17 *** ../vim-7.0.015/src/mbyte.c  Wed May 10 15:22:50 2006
18 --- src/mbyte.c Sat May 13 09:12:43 2006
19 ***************
20 *** 311,317 ****
21   
22   #define IDX_MACROMAN  57
23       {"macroman",      ENC_8BIT + ENC_MACROMAN, 0},    /* Mac OS */
24 ! #define IDX_COUNT     58
25   };
26   
27   /*
28 --- 311,321 ----
29   
30   #define IDX_MACROMAN  57
31       {"macroman",      ENC_8BIT + ENC_MACROMAN, 0},    /* Mac OS */
32 ! #define IDX_DECMCS    58
33 !     {"dec-mcs",               ENC_8BIT,               0},     /* DEC MCS */
34 ! #define IDX_HPROMAN8  59
35 !     {"hp-roman8",     ENC_8BIT,               0},     /* HP Roman8 */
36 ! #define IDX_COUNT     60
37   };
38   
39   /*
40 ***************
41 *** 386,391 ****
42 --- 390,396 ----
43       {"950",           IDX_BIG5},
44   #endif
45       {"mac",           IDX_MACROMAN},
46 +     {"mac-roman",     IDX_MACROMAN},
47       {NULL,            0}
48   };
49   
50 *** ../vim-7.0.015/src/version.c        Fri May 12 19:27:55 2006
51 --- src/version.c       Sat May 13 09:11:27 2006
52 ***************
53 *** 668,669 ****
54 --- 668,671 ----
55   {   /* Add new patch number below this line */
56 + /**/
57 +     16,
58   /**/
59
60 -- 
61 hundred-and-one symptoms of being an internet addict:
62 135. You cut classes or miss work so you can stay home and browse the web.
63
64  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
65 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
66 \\\        download, build and distribute -- http://www.A-A-P.org        ///
67  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.028691 seconds and 3 git commands to generate.