|
Karsten Hopp |
35fc42 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
35fc42 |
Subject: Patch 7.3.960
|
|
Karsten Hopp |
35fc42 |
Fcc: outbox
|
|
Karsten Hopp |
35fc42 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
35fc42 |
Mime-Version: 1.0
|
|
Karsten Hopp |
35fc42 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
35fc42 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
35fc42 |
------------
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
Patch 7.3.960
|
|
Karsten Hopp |
35fc42 |
Problem: Compiler warning for unused variable.
|
|
Karsten Hopp |
35fc42 |
Solution: Put declaration in #ifdef.
|
|
Karsten Hopp |
35fc42 |
Files: src/window.c
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
*** ../vim-7.3.959/src/window.c 2013-05-15 15:12:25.000000000 +0200
|
|
Karsten Hopp |
35fc42 |
--- src/window.c 2013-05-15 23:11:02.000000000 +0200
|
|
Karsten Hopp |
35fc42 |
***************
|
|
Karsten Hopp |
35fc42 |
*** 2124,2130 ****
|
|
Karsten Hopp |
35fc42 |
--- 2124,2132 ----
|
|
Karsten Hopp |
35fc42 |
{
|
|
Karsten Hopp |
35fc42 |
if (firstwin == lastwin)
|
|
Karsten Hopp |
35fc42 |
{
|
|
Karsten Hopp |
35fc42 |
+ #ifdef FEAT_AUTOCMD
|
|
Karsten Hopp |
35fc42 |
buf_T *old_curbuf = curbuf;
|
|
Karsten Hopp |
35fc42 |
+ #endif
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
/*
|
|
Karsten Hopp |
35fc42 |
* Closing the last window in a tab page. First go to another tab
|
|
Karsten Hopp |
35fc42 |
*** ../vim-7.3.959/src/version.c 2013-05-15 19:44:35.000000000 +0200
|
|
Karsten Hopp |
35fc42 |
--- src/version.c 2013-05-15 23:12:12.000000000 +0200
|
|
Karsten Hopp |
35fc42 |
***************
|
|
Karsten Hopp |
35fc42 |
*** 730,731 ****
|
|
Karsten Hopp |
35fc42 |
--- 730,733 ----
|
|
Karsten Hopp |
35fc42 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
35fc42 |
+ /**/
|
|
Karsten Hopp |
35fc42 |
+ 960,
|
|
Karsten Hopp |
35fc42 |
/**/
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
--
|
|
Karsten Hopp |
35fc42 |
Did you ever stop to think... and forget to start again?
|
|
Karsten Hopp |
35fc42 |
-- Steven Wright
|
|
Karsten Hopp |
35fc42 |
|
|
Karsten Hopp |
35fc42 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
35fc42 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
35fc42 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
35fc42 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|