|
Karsten Hopp |
47ad21 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
47ad21 |
Subject: Patch 7.4.596
|
|
Karsten Hopp |
47ad21 |
Fcc: outbox
|
|
Karsten Hopp |
47ad21 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
47ad21 |
Mime-Version: 1.0
|
|
Karsten Hopp |
47ad21 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
47ad21 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
47ad21 |
------------
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
Patch 7.4.596 (after 7.4.592)
|
|
Karsten Hopp |
47ad21 |
Problem: Tiny build doesn't compile. (Ike Devolder)
|
|
Karsten Hopp |
47ad21 |
Solution: Add #ifdef.
|
|
Karsten Hopp |
47ad21 |
Files: src/ex_cmds.c
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
*** ../vim-7.4.595/src/ex_cmds.c 2015-01-27 11:26:11.041183653 +0100
|
|
Karsten Hopp |
47ad21 |
--- src/ex_cmds.c 2015-01-27 13:31:22.542920506 +0100
|
|
Karsten Hopp |
47ad21 |
***************
|
|
Karsten Hopp |
47ad21 |
*** 3530,3540 ****
|
|
Karsten Hopp |
47ad21 |
--- 3530,3542 ----
|
|
Karsten Hopp |
47ad21 |
check_fname() == FAIL)
|
|
Karsten Hopp |
47ad21 |
goto theend;
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
+ #ifdef FEAT_QUICKFIX
|
|
Karsten Hopp |
47ad21 |
/* ":e foobar" when already editing "foobar" will reload the file.
|
|
Karsten Hopp |
47ad21 |
* But when 'buftype' is "nofile" there is no file to load, so don't
|
|
Karsten Hopp |
47ad21 |
* do anything. */
|
|
Karsten Hopp |
47ad21 |
if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
|
|
Karsten Hopp |
47ad21 |
goto theend;
|
|
Karsten Hopp |
47ad21 |
+ #endif
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
oldbuf = (flags & ECMD_OLDBUF);
|
|
Karsten Hopp |
47ad21 |
}
|
|
Karsten Hopp |
47ad21 |
*** ../vim-7.4.595/src/version.c 2015-01-27 13:28:42.472671261 +0100
|
|
Karsten Hopp |
47ad21 |
--- src/version.c 2015-01-27 13:32:15.966336190 +0100
|
|
Karsten Hopp |
47ad21 |
***************
|
|
Karsten Hopp |
47ad21 |
*** 743,744 ****
|
|
Karsten Hopp |
47ad21 |
--- 743,746 ----
|
|
Karsten Hopp |
47ad21 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
47ad21 |
+ /**/
|
|
Karsten Hopp |
47ad21 |
+ 596,
|
|
Karsten Hopp |
47ad21 |
/**/
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
--
|
|
Karsten Hopp |
47ad21 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
47ad21 |
125. You begin to wonder how often it REALLY is necessary to get up
|
|
Karsten Hopp |
47ad21 |
and shower or bathe.
|
|
Karsten Hopp |
47ad21 |
|
|
Karsten Hopp |
47ad21 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
47ad21 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
47ad21 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
47ad21 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|