]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.016
- new
[packages/vim.git] / 7.0.016
CommitLineData
5ee5dc07
AM
1To: vim-dev@vim.org
2Subject: Patch 7.0.016
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.016
11Problem: Printing doesn't work for "dec-mcs" encoding.
12Solution: Add "dec-mcs", "mac-roman" and "hp-roman8" to the list of
13 recognized 8-bit encodings. (Mike Williams)
14Files: 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--
61hundred-and-one symptoms of being an internet addict:
62135. 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.028548 seconds and 4 git commands to generate.