]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.407
- remove missing .po files
[packages/vim.git] / 6.2.407
CommitLineData
51f9884c
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.407
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.407 (after 6.2.299)
11Problem: ":help \@<=" doesn't find help.
12Solution: Avoid that ":help \@<=" searches for the "<=" language.
13Files: src/tag.c
14
15
16*** ../vim-6.2.406/src/tag.c Tue Mar 23 14:08:00 2004
17--- src/tag.c Fri Mar 26 22:32:04 2004
18***************
19*** 1182,1188 ****
20 {
21 /* When "@ab" is specified use only the "ab" language, otherwise
22 * search all languages. */
23! if (patlen > 3 && pat[patlen - 3] == '@')
24 {
25 saved_pat = vim_strnsave(pat, patlen - 3);
26 if (saved_pat != NULL)
27--- 1182,1190 ----
28 {
29 /* When "@ab" is specified use only the "ab" language, otherwise
30 * search all languages. */
31! if (patlen > 3 && pat[patlen - 3] == '@'
32! && ASCII_ISALPHA(pat[patlen - 2])
33! && ASCII_ISALPHA(pat[patlen - 1]))
34 {
35 saved_pat = vim_strnsave(pat, patlen - 3);
36 if (saved_pat != NULL)
37*** ../vim-6.2.406/src/version.c Fri Mar 26 22:26:46 2004
38--- src/version.c Fri Mar 26 22:29:07 2004
39***************
40*** 639,640 ****
41--- 639,642 ----
42 { /* Add new patch number below this line */
43+ /**/
44+ 407,
45 /**/
46
47--
48hundred-and-one symptoms of being an internet addict:
49161. You get up before the sun rises to check your e-mail, and you
50 find yourself in the very same chair long after the sun has set.
51
52 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
53/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
55 \\\ Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
This page took 0.070481 seconds and 4 git commands to generate.