patch 8.2.2347: build failure without GUI
Problem: Build failure without GUI.
Solution: Add #ifdef.
diff --git a/src/term.c b/src/term.c
index bf33a1c..f4f54e2 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2550,8 +2550,10 @@
{
out_buf[len] = NUL;
ch_log(NULL, "raw %s output: \"%s\"",
- (gui.in_use && !gui.dying && !gui.starting)
- ? "GUI" : "terminal",
+# ifdef FEAT_GUI
+ (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
+# endif
+ "terminal",
out_buf);
ch_log_output = FALSE;
}
diff --git a/src/version.c b/src/version.c
index 56522d9..319e65e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2347,
+/**/
2346,
/**/
2345,