]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.037
- initial import
[packages/vim.git] / 6.2.037
CommitLineData
d8621708 1To: vim-dev@vim.org
2Subject: Patch 6.2.037
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 6.2.037
11Problem: Win32: converting an encoding name to a codepage could result in
12 an arbitrary number.
13Solution: make encname2codepage() return zero if the encoding name doesn't
14 contain a codepage number.
15Files: src/mbyte.c
16
17
18*** ../vim-6.2.036/src/mbyte.c Tue Jun 3 21:09:52 2003
19--- src/mbyte.c Sun Jun 22 17:05:41 2003
20***************
21*** 2773,2778 ****
22--- 2773,2780 ----
23 cp = atoi(p + 2);
24 else if ((idx = enc_canon_search(p)) >= 0)
25 cp = enc_canon_table[idx].codepage;
26+ else
27+ return 0;
28 if (IsValidCodePage(cp))
29 return cp;
30 return 0;
31*** ../vim-6.2.036/src/version.c Fri Jul 25 22:30:18 2003
32--- src/version.c Fri Jul 25 22:33:47 2003
33***************
34*** 632,633 ****
35--- 632,635 ----
36 { /* Add new patch number below this line */
37+ /**/
38+ 37,
39 /**/
40
41--
42CART DRIVER: Bring out your dead!
43 There are legs stick out of windows and doors. Two MEN are fighting in the
44 mud - covered from head to foot in it. Another MAN is on his hands in
45 knees shovelling mud into his mouth. We just catch sight of a MAN falling
46 into a well.
47 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
51\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
52 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.151731 seconds and 4 git commands to generate.