|
Karsten Hopp |
a7ba46 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
a7ba46 |
Subject: Patch 7.3.324
|
|
Karsten Hopp |
a7ba46 |
Fcc: outbox
|
|
Karsten Hopp |
a7ba46 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
a7ba46 |
Mime-Version: 1.0
|
|
Karsten Hopp |
a7ba46 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
a7ba46 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
a7ba46 |
------------
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
Patch 7.3.324 (after 7.3.237)
|
|
Karsten Hopp |
a7ba46 |
Problem: Completion for ":compiler" shows color scheme names.
|
|
Karsten Hopp |
a7ba46 |
Solution: Fix the directory name. (James Vega)
|
|
Karsten Hopp |
a7ba46 |
Files: src/ex_getln.c
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
*** ../vim-7.3.323/src/ex_getln.c 2011-08-17 16:25:43.000000000 +0200
|
|
Karsten Hopp |
a7ba46 |
--- src/ex_getln.c 2011-09-30 16:22:14.000000000 +0200
|
|
Karsten Hopp |
a7ba46 |
***************
|
|
Karsten Hopp |
a7ba46 |
*** 4546,4552 ****
|
|
Karsten Hopp |
a7ba46 |
}
|
|
Karsten Hopp |
a7ba46 |
if (xp->xp_context == EXPAND_COMPILER)
|
|
Karsten Hopp |
a7ba46 |
{
|
|
Karsten Hopp |
a7ba46 |
! char *directories[] = {"colors", NULL};
|
|
Karsten Hopp |
a7ba46 |
return ExpandRTDir(pat, num_file, file, directories);
|
|
Karsten Hopp |
a7ba46 |
}
|
|
Karsten Hopp |
a7ba46 |
if (xp->xp_context == EXPAND_OWNSYNTAX)
|
|
Karsten Hopp |
a7ba46 |
--- 4546,4552 ----
|
|
Karsten Hopp |
a7ba46 |
}
|
|
Karsten Hopp |
a7ba46 |
if (xp->xp_context == EXPAND_COMPILER)
|
|
Karsten Hopp |
a7ba46 |
{
|
|
Karsten Hopp |
a7ba46 |
! char *directories[] = {"compiler", NULL};
|
|
Karsten Hopp |
a7ba46 |
return ExpandRTDir(pat, num_file, file, directories);
|
|
Karsten Hopp |
a7ba46 |
}
|
|
Karsten Hopp |
a7ba46 |
if (xp->xp_context == EXPAND_OWNSYNTAX)
|
|
Karsten Hopp |
a7ba46 |
*** ../vim-7.3.323/src/version.c 2011-09-30 14:44:49.000000000 +0200
|
|
Karsten Hopp |
a7ba46 |
--- src/version.c 2011-09-30 16:23:15.000000000 +0200
|
|
Karsten Hopp |
a7ba46 |
***************
|
|
Karsten Hopp |
a7ba46 |
*** 711,712 ****
|
|
Karsten Hopp |
a7ba46 |
--- 711,714 ----
|
|
Karsten Hopp |
a7ba46 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
a7ba46 |
+ /**/
|
|
Karsten Hopp |
a7ba46 |
+ 324,
|
|
Karsten Hopp |
a7ba46 |
/**/
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
--
|
|
Karsten Hopp |
a7ba46 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
a7ba46 |
31. You code your homework in HTML and give your instructor the URL.
|
|
Karsten Hopp |
a7ba46 |
|
|
Karsten Hopp |
a7ba46 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
a7ba46 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
a7ba46 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
a7ba46 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|