|
Karsten Hopp |
935c7e |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
935c7e |
Subject: Patch 7.4.632
|
|
Karsten Hopp |
935c7e |
Fcc: outbox
|
|
Karsten Hopp |
935c7e |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
935c7e |
Mime-Version: 1.0
|
|
Karsten Hopp |
935c7e |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
935c7e |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
935c7e |
------------
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
Patch 7.4.632 (after 7.4.592)
|
|
Karsten Hopp |
935c7e |
Problem: 7.4.592 breaks the netrw plugin, because the autocommands are
|
|
Karsten Hopp |
935c7e |
skipped.
|
|
Karsten Hopp |
935c7e |
Solution: Roll back the change.
|
|
Karsten Hopp |
935c7e |
Files: src/ex_cmds.c
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
*** ../vim-7.4.631/src/ex_cmds.c 2015-01-27 13:33:18.737649629 +0100
|
|
Karsten Hopp |
935c7e |
--- src/ex_cmds.c 2015-02-17 12:08:56.732209558 +0100
|
|
Karsten Hopp |
935c7e |
***************
|
|
Karsten Hopp |
935c7e |
*** 3530,3543 ****
|
|
Karsten Hopp |
935c7e |
check_fname() == FAIL)
|
|
Karsten Hopp |
935c7e |
goto theend;
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
- #ifdef FEAT_QUICKFIX
|
|
Karsten Hopp |
935c7e |
- /* ":e foobar" when already editing "foobar" will reload the file.
|
|
Karsten Hopp |
935c7e |
- * But when 'buftype' is "nofile" there is no file to load, so don't
|
|
Karsten Hopp |
935c7e |
- * do anything. */
|
|
Karsten Hopp |
935c7e |
- if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
|
|
Karsten Hopp |
935c7e |
- goto theend;
|
|
Karsten Hopp |
935c7e |
- #endif
|
|
Karsten Hopp |
935c7e |
-
|
|
Karsten Hopp |
935c7e |
oldbuf = (flags & ECMD_OLDBUF);
|
|
Karsten Hopp |
935c7e |
}
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
--- 3530,3535 ----
|
|
Karsten Hopp |
935c7e |
*** ../vim-7.4.631/src/version.c 2015-02-17 11:11:42.244891247 +0100
|
|
Karsten Hopp |
935c7e |
--- src/version.c 2015-02-17 12:09:58.079410571 +0100
|
|
Karsten Hopp |
935c7e |
***************
|
|
Karsten Hopp |
935c7e |
*** 743,744 ****
|
|
Karsten Hopp |
935c7e |
--- 743,746 ----
|
|
Karsten Hopp |
935c7e |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
935c7e |
+ /**/
|
|
Karsten Hopp |
935c7e |
+ 632,
|
|
Karsten Hopp |
935c7e |
/**/
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
--
|
|
Karsten Hopp |
935c7e |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
935c7e |
240. You think Webster's Dictionary is a directory of WEB sites.
|
|
Karsten Hopp |
935c7e |
|
|
Karsten Hopp |
935c7e |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
935c7e |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
935c7e |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
935c7e |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|