]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.190
- new
[packages/vim.git] / 7.0.190
CommitLineData
9b1d76b7
AG
1To: vim-dev@vim.org
2Subject: patch 7.0.190
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.190
11Problem: "syntax spell default" results in an error message.
12Solution: Change 4 to 7 for STRNICMP(). (Raul Nunez de Arenas Coronado)
13Files: src/syntax.c
14
15
16*** ../vim-7.0.189/src/syntax.c Wed Nov 1 12:43:07 2006
17--- src/syntax.c Sun Jan 21 13:12:19 2007
18***************
19*** 3206,3212 ****
20 curbuf->b_syn_spell = SYNSPL_TOP;
21 else if (STRNICMP(arg, "notoplevel", 10) == 0 && next - arg == 10)
22 curbuf->b_syn_spell = SYNSPL_NOTOP;
23! else if (STRNICMP(arg, "default", 4) == 0 && next - arg == 4)
24 curbuf->b_syn_spell = SYNSPL_DEFAULT;
25 else
26 EMSG2(_("E390: Illegal argument: %s"), arg);
27--- 3206,3212 ----
28 curbuf->b_syn_spell = SYNSPL_TOP;
29 else if (STRNICMP(arg, "notoplevel", 10) == 0 && next - arg == 10)
30 curbuf->b_syn_spell = SYNSPL_NOTOP;
31! else if (STRNICMP(arg, "default", 7) == 0 && next - arg == 7)
32 curbuf->b_syn_spell = SYNSPL_DEFAULT;
33 else
34 EMSG2(_("E390: Illegal argument: %s"), arg);
35*** ../vim-7.0.189/src/version.c Sun Feb 4 02:37:40 2007
36--- src/version.c Sun Feb 4 02:40:23 2007
37***************
38*** 668,669 ****
39--- 668,671 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 190,
43 /**/
44
45--
46From "know your smileys":
47 :-)-O Smiling doctor with stethoscope
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ download, build and distribute -- http://www.A-A-P.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034155 seconds and 4 git commands to generate.