Skip to content

Commit 1a5b043

Browse files
committed
updated for version 7.4b.021
Problem: Pressing "u" after an external command results in multiple press-enter messages. (glts) Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian Brabandt)
1 parent 7d9bed9 commit 1a5b043

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/message.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ wait_return(redraw)
10041004
quit_more = FALSE;
10051005
got_int = FALSE;
10061006
}
1007-
else
1007+
else if (c != K_IGNORE)
10081008
{
10091009
c = K_IGNORE;
10101010
hit_return_msg();

src/version.c

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

728728
static int included_patches[] =
729729
{ /* Add new patch number below this line */
730+
/**/
731+
21,
730732
/**/
731733
20,
732734
/**/

0 commit comments

Comments
 (0)