|
Karsten Hopp |
d525c1 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
d525c1 |
Subject: Patch 7.4.438
|
|
Karsten Hopp |
d525c1 |
Fcc: outbox
|
|
Karsten Hopp |
d525c1 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
d525c1 |
Mime-Version: 1.0
|
|
Karsten Hopp |
d525c1 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
d525c1 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
d525c1 |
------------
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
Patch 7.4.438
|
|
Karsten Hopp |
d525c1 |
Problem: Cached values for 'cino' not reset for ":set all&".
|
|
Karsten Hopp |
d525c1 |
Solution: Call parse_cino(). (Yukihiro Nakadaira)
|
|
Karsten Hopp |
d525c1 |
Files: src/option.c
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
*** ../vim-7.4.437/src/option.c 2014-08-24 21:39:45.488526954 +0200
|
|
Karsten Hopp |
d525c1 |
--- src/option.c 2014-09-09 17:29:43.216541739 +0200
|
|
Karsten Hopp |
d525c1 |
***************
|
|
Karsten Hopp |
d525c1 |
*** 3645,3650 ****
|
|
Karsten Hopp |
d525c1 |
--- 3645,3653 ----
|
|
Karsten Hopp |
d525c1 |
#else
|
|
Karsten Hopp |
d525c1 |
win_comp_scroll(curwin);
|
|
Karsten Hopp |
d525c1 |
#endif
|
|
Karsten Hopp |
d525c1 |
+ #ifdef FEAT_CINDENT
|
|
Karsten Hopp |
d525c1 |
+ parse_cino(curbuf);
|
|
Karsten Hopp |
d525c1 |
+ #endif
|
|
Karsten Hopp |
d525c1 |
}
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
/*
|
|
Karsten Hopp |
d525c1 |
*** ../vim-7.4.437/src/version.c 2014-09-09 17:18:44.008540299 +0200
|
|
Karsten Hopp |
d525c1 |
--- src/version.c 2014-09-09 17:32:16.108542073 +0200
|
|
Karsten Hopp |
d525c1 |
***************
|
|
Karsten Hopp |
d525c1 |
*** 743,744 ****
|
|
Karsten Hopp |
d525c1 |
--- 743,746 ----
|
|
Karsten Hopp |
d525c1 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
d525c1 |
+ /**/
|
|
Karsten Hopp |
d525c1 |
+ 438,
|
|
Karsten Hopp |
d525c1 |
/**/
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
--
|
|
Karsten Hopp |
d525c1 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
d525c1 |
112. You are amazed that anyone uses a phone without a modem on it...let
|
|
Karsten Hopp |
d525c1 |
alone hear actual voices.
|
|
Karsten Hopp |
d525c1 |
|
|
Karsten Hopp |
d525c1 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
d525c1 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
d525c1 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
d525c1 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|