Patch 8.2.0957
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution: Initialize one variable.
Files: src/spell.c
*** ../vim-8.2.0956/src/spell.c 2020-06-10 22:17:53.989672673 +0200
--- src/spell.c 2020-06-11 12:27:02.530099353 +0200
***************
*** 207,213 ****
if (spell_iswordp(mi.mi_fend, wp))
{
int prev_upper;
! int this_upper;
if (use_camel_case)
{
--- 207,213 ----
if (spell_iswordp(mi.mi_fend, wp))
{
int prev_upper;
! int this_upper = FALSE; // init for gcc
if (use_camel_case)
{
*** ../vim-8.2.0956/src/version.c 2020-06-10 22:17:53.989672673 +0200
--- src/version.c 2020-06-11 12:28:39.097621563 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 957,
/**/
--
This is the polymorph virus! Follow these instructions carefully:
1. Send this message to everybody you know.
2. Format your harddisk.
Thank you for your cooperation in spreading the most powerful virus ever!
/// 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/202006111030.05BAUo3k030531%40masaka.moolenaar.net.