Patch 8.2.2347
Problem: Build failure without GUI.
Solution: Add #ifdef.
Files: src/term.c
*** ../vim-8.2.2346/src/term.c 2021-01-14 17:35:17.283416578 +0100
--- src/term.c 2021-01-14 19:04:02.894449739 +0100
***************
*** 2550,2557 ****
{
out_buf[len] = NUL;
ch_log(NULL, "raw %s output: \"%s\"",
! (gui.in_use && !gui.dying && !gui.starting)
! ? "GUI" : "terminal",
out_buf);
ch_log_output = FALSE;
}
--- 2550,2559 ----
{
out_buf[len] = NUL;
ch_log(NULL, "raw %s output: \"%s\"",
! # ifdef FEAT_GUI
! (gui.in_use && !gui.dying && !gui.starting) ? "GUI" :
! # endif
! "terminal",
out_buf);
ch_log_output = FALSE;
}
*** ../vim-8.2.2346/src/version.c 2021-01-14 17:54:20.431688961 +0100
--- src/version.c 2021-01-14 19:04:30.922355912 +0100
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 2347,
/**/
--
hundred-and-one symptoms of being an internet addict:
143. You dream in pallettes of 216 websafe colors.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202101141805.10EI595v1644089%40masaka.moolenaar.net.