|
Karsten Hopp |
904a58 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
904a58 |
Subject: Patch 7.4.452
|
|
Karsten Hopp |
904a58 |
Fcc: outbox
|
|
Karsten Hopp |
904a58 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
904a58 |
Mime-Version: 1.0
|
|
Karsten Hopp |
904a58 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
904a58 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
904a58 |
------------
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
Patch 7.4.452
|
|
Karsten Hopp |
904a58 |
Problem: Can't build with tiny features. (Tony Mechelynck)
|
|
Karsten Hopp |
904a58 |
Solution: Use "return" instead of "break".
|
|
Karsten Hopp |
904a58 |
Files: src/ex_cmds.c
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
*** ../vim-7.4.451/src/ex_cmds.c 2014-09-19 19:39:30.766446025 +0200
|
|
Karsten Hopp |
904a58 |
--- src/ex_cmds.c 2014-09-19 22:03:13.506464860 +0200
|
|
Karsten Hopp |
904a58 |
***************
|
|
Karsten Hopp |
904a58 |
*** 5900,5906 ****
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
/*
|
|
Karsten Hopp |
904a58 |
! * ":helpclose": Close the help window
|
|
Karsten Hopp |
904a58 |
*/
|
|
Karsten Hopp |
904a58 |
void
|
|
Karsten Hopp |
904a58 |
ex_helpclose(eap)
|
|
Karsten Hopp |
904a58 |
--- 5900,5906 ----
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
/*
|
|
Karsten Hopp |
904a58 |
! * ":helpclose": Close one help window
|
|
Karsten Hopp |
904a58 |
*/
|
|
Karsten Hopp |
904a58 |
void
|
|
Karsten Hopp |
904a58 |
ex_helpclose(eap)
|
|
Karsten Hopp |
904a58 |
***************
|
|
Karsten Hopp |
904a58 |
*** 5913,5919 ****
|
|
Karsten Hopp |
904a58 |
if (win->w_buffer->b_help)
|
|
Karsten Hopp |
904a58 |
{
|
|
Karsten Hopp |
904a58 |
win_close(win, FALSE);
|
|
Karsten Hopp |
904a58 |
! break;
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
--- 5913,5919 ----
|
|
Karsten Hopp |
904a58 |
if (win->w_buffer->b_help)
|
|
Karsten Hopp |
904a58 |
{
|
|
Karsten Hopp |
904a58 |
win_close(win, FALSE);
|
|
Karsten Hopp |
904a58 |
! return;
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
}
|
|
Karsten Hopp |
904a58 |
*** ../vim-7.4.451/src/version.c 2014-09-19 20:45:19.266454650 +0200
|
|
Karsten Hopp |
904a58 |
--- src/version.c 2014-09-19 22:05:30.178465158 +0200
|
|
Karsten Hopp |
904a58 |
***************
|
|
Karsten Hopp |
904a58 |
*** 743,744 ****
|
|
Karsten Hopp |
904a58 |
--- 743,746 ----
|
|
Karsten Hopp |
904a58 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
904a58 |
+ /**/
|
|
Karsten Hopp |
904a58 |
+ 452,
|
|
Karsten Hopp |
904a58 |
/**/
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
--
|
|
Karsten Hopp |
904a58 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
904a58 |
168. You have your own domain name.
|
|
Karsten Hopp |
904a58 |
|
|
Karsten Hopp |
904a58 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
904a58 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
904a58 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
904a58 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|