|
Karsten Hopp |
82c9e3 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
82c9e3 |
Subject: patch 7.0.220
|
|
Karsten Hopp |
82c9e3 |
Fcc: outbox
|
|
Karsten Hopp |
82c9e3 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
82c9e3 |
Mime-Version: 1.0
|
|
Karsten Hopp |
82c9e3 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
82c9e3 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
82c9e3 |
------------
|
|
Karsten Hopp |
82c9e3 |
|
|
Karsten Hopp |
82c9e3 |
Patch 7.0.220
|
|
Karsten Hopp |
82c9e3 |
Problem: Crash when using winnr('#') in a new tab page. (Andy Wokula)
|
|
Karsten Hopp |
82c9e3 |
Solution: Check for not finding the window.
|
|
Karsten Hopp |
82c9e3 |
Files: src/eval.c
|
|
Karsten Hopp |
82c9e3 |
|
|
Karsten Hopp |
82c9e3 |
|
|
Karsten Hopp |
82c9e3 |
*** ../vim-7.0.219/src/eval.c Tue Feb 20 03:18:20 2007
|
|
Karsten Hopp |
82c9e3 |
--- src/eval.c Sun Mar 25 17:43:53 2007
|
|
Karsten Hopp |
82c9e3 |
***************
|
|
Karsten Hopp |
82c9e3 |
*** 15769,15775 ****
|
|
Karsten Hopp |
82c9e3 |
--- 15769,15783 ----
|
|
Karsten Hopp |
82c9e3 |
if (nr > 0)
|
|
Karsten Hopp |
82c9e3 |
for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
|
|
Karsten Hopp |
82c9e3 |
wp != twin; wp = wp->w_next)
|
|
Karsten Hopp |
82c9e3 |
+ {
|
|
Karsten Hopp |
82c9e3 |
+ if (wp == NULL)
|
|
Karsten Hopp |
82c9e3 |
+ {
|
|
Karsten Hopp |
82c9e3 |
+ /* didn't find it in this tabpage */
|
|
Karsten Hopp |
82c9e3 |
+ nr = 0;
|
|
Karsten Hopp |
82c9e3 |
+ break;
|
|
Karsten Hopp |
82c9e3 |
+ }
|
|
Karsten Hopp |
82c9e3 |
++nr;
|
|
Karsten Hopp |
82c9e3 |
+ }
|
|
Karsten Hopp |
82c9e3 |
return nr;
|
|
Karsten Hopp |
82c9e3 |
}
|
|
Karsten Hopp |
82c9e3 |
#endif
|
|
Karsten Hopp |
82c9e3 |
*** ../vim-7.0.219/src/version.c Sun Mar 18 21:52:09 2007
|
|
Karsten Hopp |
82c9e3 |
--- src/version.c Sun Mar 25 17:48:20 2007
|
|
Karsten Hopp |
82c9e3 |
***************
|
|
Karsten Hopp |
82c9e3 |
*** 668,669 ****
|
|
Karsten Hopp |
82c9e3 |
--- 668,671 ----
|
|
Karsten Hopp |
82c9e3 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
82c9e3 |
+ /**/
|
|
Karsten Hopp |
82c9e3 |
+ 220,
|
|
Karsten Hopp |
82c9e3 |
/**/
|
|
Karsten Hopp |
82c9e3 |
|
|
Karsten Hopp |
82c9e3 |
--
|
|
Karsten Hopp |
82c9e3 |
Men may not be seen publicly in any kind of strapless gown.
|
|
Karsten Hopp |
82c9e3 |
[real standing law in Florida, United States of America]
|
|
Karsten Hopp |
82c9e3 |
|
|
Karsten Hopp |
82c9e3 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
82c9e3 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
82c9e3 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
82c9e3 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|