From 160a2b4dac198f31fbcff9d696548e011c4602c1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 1 Apr 2021 21:57:46 +0200 Subject: patch 8.2.2689: tiny build fails Problem: Tiny build fails. Solution: Add #ifdef around use of p_stl. --- src/ex_getln.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/ex_getln.c b/src/ex_getln.c index 58cd6c358..b61761b60 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -1707,6 +1707,7 @@ getcmdline_int( if (did_emsg) redrawcmd(); +#ifdef FEAT_STL_OPT // Redraw the statusline in case it uses the current mode using the mode() // function. if (!cmd_silent && msg_scrolled == 0 && *p_stl != NUL) @@ -1714,6 +1715,7 @@ getcmdline_int( curwin->w_redr_status = TRUE; redraw_statuslines(); } +#endif did_emsg = FALSE; got_int = FALSE; diff --git a/src/version.c b/src/version.c index 7da1fc4fa..743fbfb0d 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2689, /**/ 2688, /**/ -- cgit v1.2.1