Skip to content

Commit 17b1c59

Browse files
committed
updated for version 7.4.181
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel Ferencik, Jan Christoph Ebersbach) Solution: Update the status lines. (Nobuhiro Takasaki)
1 parent b263312 commit 17b1c59

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/getchar.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ read_readbuf(buf, advance)
406406
}
407407

408408
/*
409-
* Prepare the read buffers for reading (if they contains something).
409+
* Prepare the read buffers for reading (if they contain something).
410410
*/
411411
static void
412412
start_stuff()
@@ -2302,6 +2302,10 @@ vgetorpeek(advance)
23022302
msg_row = Rows - 1;
23032303
msg_clr_eos(); /* clear ruler */
23042304
}
2305+
#ifdef FEAT_WINDOWS
2306+
status_redraw_all();
2307+
redraw_statuslines();
2308+
#endif
23052309
showmode();
23062310
setcursor();
23072311
continue;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
181,
741743
/**/
742744
180,
743745
/**/

0 commit comments

Comments
 (0)