]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.052
- fix for current libselinux
[packages/vim.git] / 6.2.052
CommitLineData
d8621708 1To: vim-dev@vim.org
2Subject: Patch 6.2.052
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.052
11Problem: A few messages are not translated.
12Solution: Add _() to the messages. (Muraoka Taro)
13Files: src/ex_cmds.c
14
15
16*** ../vim-6.2.051/src/ex_cmds.c Sun May 25 17:21:20 2003
17--- src/ex_cmds.c Fri Jun 27 20:44:42 2003
18***************
19*** 114,125 ****
20 )
21 IObuff[len++] = ' '; /* draw composing char on top of a space */
22 IObuff[len + (*mb_char2bytes)(c, IObuff + len)] = NUL;
23! if (c < 0x10000)
24! sprintf((char *)IObuff + STRLEN(IObuff),
25! "> %d, Hex %04x, Octal %o", c, c, c);
26! else
27! sprintf((char *)IObuff + STRLEN(IObuff),
28! "> %d, Hex %08x, Octal %o", c, c, c);
29 c = c1;
30 c1 = c2;
31 c2 = 0;
32--- 114,122 ----
33 )
34 IObuff[len++] = ' '; /* draw composing char on top of a space */
35 IObuff[len + (*mb_char2bytes)(c, IObuff + len)] = NUL;
36! sprintf((char *)IObuff + STRLEN(IObuff),
37! c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
38! : _("> %d, Hex %08x, Octal %o"), c, c, c);
39 c = c1;
40 c1 = c2;
41 c2 = 0;
42*** ../vim-6.2.051/src/version.c Sun Jul 27 14:49:17 2003
43--- src/version.c Sun Jul 27 14:51:22 2003
44***************
45*** 632,633 ****
46--- 632,635 ----
47 { /* Add new patch number below this line */
48+ /**/
49+ 52,
50 /**/
51
52--
53BEDEVERE: And what do you burn, apart from witches?
54FOURTH VILLAGER: ... Wood?
55BEDEVERE: So why do witches burn?
56SECOND VILLAGER: (pianissimo) ... Because they're made of wood...?
57 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
58
59 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
60/// Creator of Vim - Vi IMproved -- http://www.Vim.org \\\
61\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
62 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.040417 seconds and 4 git commands to generate.