|
Karsten Hopp |
07bc37 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
07bc37 |
Subject: Patch 7.4.181
|
|
Karsten Hopp |
07bc37 |
Fcc: outbox
|
|
Karsten Hopp |
07bc37 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
07bc37 |
Mime-Version: 1.0
|
|
Karsten Hopp |
07bc37 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
07bc37 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
07bc37 |
------------
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
Patch 7.4.181
|
|
Karsten Hopp |
07bc37 |
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel
|
|
Karsten Hopp |
07bc37 |
Ferencik, Jan Christoph Ebersbach)
|
|
Karsten Hopp |
07bc37 |
Solution: Update the status lines. (Nobuhiro Takasaki)
|
|
Karsten Hopp |
07bc37 |
Files: src/getchar.c
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
*** ../vim-7.4.180/src/getchar.c 2014-02-11 15:10:38.130111835 +0100
|
|
Karsten Hopp |
07bc37 |
--- src/getchar.c 2014-02-15 16:14:34.249903278 +0100
|
|
Karsten Hopp |
07bc37 |
***************
|
|
Karsten Hopp |
07bc37 |
*** 406,412 ****
|
|
Karsten Hopp |
07bc37 |
}
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
/*
|
|
Karsten Hopp |
07bc37 |
! * Prepare the read buffers for reading (if they contains something).
|
|
Karsten Hopp |
07bc37 |
*/
|
|
Karsten Hopp |
07bc37 |
static void
|
|
Karsten Hopp |
07bc37 |
start_stuff()
|
|
Karsten Hopp |
07bc37 |
--- 406,412 ----
|
|
Karsten Hopp |
07bc37 |
}
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
/*
|
|
Karsten Hopp |
07bc37 |
! * Prepare the read buffers for reading (if they contain something).
|
|
Karsten Hopp |
07bc37 |
*/
|
|
Karsten Hopp |
07bc37 |
static void
|
|
Karsten Hopp |
07bc37 |
start_stuff()
|
|
Karsten Hopp |
07bc37 |
***************
|
|
Karsten Hopp |
07bc37 |
*** 2302,2307 ****
|
|
Karsten Hopp |
07bc37 |
--- 2302,2311 ----
|
|
Karsten Hopp |
07bc37 |
msg_row = Rows - 1;
|
|
Karsten Hopp |
07bc37 |
msg_clr_eos(); /* clear ruler */
|
|
Karsten Hopp |
07bc37 |
}
|
|
Karsten Hopp |
07bc37 |
+ #ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
07bc37 |
+ status_redraw_all();
|
|
Karsten Hopp |
07bc37 |
+ redraw_statuslines();
|
|
Karsten Hopp |
07bc37 |
+ #endif
|
|
Karsten Hopp |
07bc37 |
showmode();
|
|
Karsten Hopp |
07bc37 |
setcursor();
|
|
Karsten Hopp |
07bc37 |
continue;
|
|
Karsten Hopp |
07bc37 |
*** ../vim-7.4.180/src/version.c 2014-02-15 15:58:55.081904773 +0100
|
|
Karsten Hopp |
07bc37 |
--- src/version.c 2014-02-15 16:12:22.329903488 +0100
|
|
Karsten Hopp |
07bc37 |
***************
|
|
Karsten Hopp |
07bc37 |
*** 740,741 ****
|
|
Karsten Hopp |
07bc37 |
--- 740,743 ----
|
|
Karsten Hopp |
07bc37 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
07bc37 |
+ /**/
|
|
Karsten Hopp |
07bc37 |
+ 181,
|
|
Karsten Hopp |
07bc37 |
/**/
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
--
|
|
Karsten Hopp |
07bc37 |
FIRST GUARD: Ah! Now ... we're not allowed to ...
|
|
Karsten Hopp |
07bc37 |
SIR LAUNCELOT runs him through, grabs his spear and stabs the other
|
|
Karsten Hopp |
07bc37 |
guard who collapses in a heap. Hiccoughs quietly.
|
|
Karsten Hopp |
07bc37 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
07bc37 |
|
|
Karsten Hopp |
07bc37 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
07bc37 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
07bc37 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
07bc37 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|