Patch 8.2.0971
Problem: Build with tiny features fails.
Solution: Add #ifdef.
Files: src/term.c
*** ../vim-8.2.0970/src/term.c 2020-06-13 15:47:21.066282284 +0200
--- src/term.c 2020-06-13 16:39:06.107456858 +0200
***************
*** 4538,4544 ****
// Reset terminal properties that are set based on the termresponse.
// Mainly useful for tests that send the termresponse multiple times.
// For testing all props can be reset.
! init_term_props(reset_term_props_on_termresponse);
// If this code starts with CSI, you can bet that the
// terminal uses 8-bit codes.
--- 4538,4550 ----
// Reset terminal properties that are set based on the termresponse.
// Mainly useful for tests that send the termresponse multiple times.
// For testing all props can be reset.
! init_term_props(
! #ifdef FEAT_EVAL
! reset_term_props_on_termresponse
! #else
! FALSE
! #endif
! );
// If this code starts with CSI, you can bet that the
// terminal uses 8-bit codes.
*** ../vim-8.2.0970/src/version.c 2020-06-13 15:47:21.074282253 +0200
--- src/version.c 2020-06-13 16:38:25.647568939 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 971,
/**/
--
A mathematician is a device for turning coffee into theorems.
Paul Erdos
A computer programmer is a device for turning coffee into bugs.
Bram Moolenaar
/// 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/202006131440.05DEe3YG602574%40masaka.moolenaar.net.