We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314dd79 commit 34a5874Copy full SHA for 34a5874
src/gui_gtk_x11.c
@@ -6320,7 +6320,7 @@ gui_mch_wait_for_chars(long wtime)
6320
// This timeout makes sure that we will return if no characters arrived in
6321
// time. If "wtime" is zero just use one.
6322
if (wtime >= 0)
6323
- timer = timeout_add(wtime <= 0 ? 1L : wtime,
+ timer = timeout_add(wtime == 0 ? 1L : wtime,
6324
input_timer_cb, &timed_out);
6325
else
6326
timer = 0;
src/version.c
@@ -783,6 +783,8 @@ static char *(features[]) =
783
784
static int included_patches[] =
785
{ /* Add new patch number below this line */
786
+/**/
787
+ 872,
788
/**/
789
871,
790
0 commit comments