Patch 8.2.0797
Problem: MS-Windows: compiler still can't handle C99 construct.
Solution: Change to C90 construct. (Dominique Pelle, closes #6106)
Files: src/libvterm/src/state.c
*** ../vim-8.2.0796/src/libvterm/src/state.c 2020-05-18 23:27:47.151151979
+0200
--- src/libvterm/src/state.c 2020-05-19 10:24:49.372916507 +0200
***************
*** 1780,1787 ****
}
for( ; row < rows; row++) {
! VTermLineInfo lineInfo = (VTermLineInfo){0};
! lineInfo.doublewidth = 0;
newlineinfo[row] = lineInfo;
}
--- 1780,1786 ----
}
for( ; row < rows; row++) {
! VTermLineInfo lineInfo = {0};
newlineinfo[row] = lineInfo;
}
*** ../vim-8.2.0796/src/version.c 2020-05-18 23:27:47.151151979 +0200
--- src/version.c 2020-05-19 10:31:57.927483303 +0200
***************
*** 748,749 ****
--- 748,751 ----
{ /* Add new patch number below this line */
+ /**/
+ 797,
/**/
--
Birthdays are healthy. The more you have them, the longer you live.
/// 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/202005190833.04J8XTCl022801%40masaka.moolenaar.net.