To: vim_dev@googlegroups.com Subject: Patch 8.2.3425 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.3425 Problem: Warning for using uninitialized variable. Solution: Initialize it. (John Marriott) Files: src/screen.c *** ../vim-8.2.3424/src/screen.c 2021-09-10 16:58:24.446743066 +0200 --- src/screen.c 2021-09-11 12:13:51.928042996 +0200 *************** *** 4787,4794 **** int round, i, len, entries; char_u *p, *s; int c1 = 0, c2 = 0, c3 = 0; ! char_u *last_multispace; // Last occurrence of "multispace:" ! int multispace_len = 0; // Length of lcs-multispace string struct charstab { int *cp; --- 4787,4794 ---- int round, i, len, entries; char_u *p, *s; int c1 = 0, c2 = 0, c3 = 0; ! char_u *last_multispace = NULL; // Last occurrence of "multispace:" ! int multispace_len = 0; // Length of lcs-multispace string struct charstab { int *cp; *** ../vim-8.2.3424/src/version.c 2021-09-10 16:58:24.446743066 +0200 --- src/version.c 2021-09-11 12:14:48.843950706 +0200 *************** *** 757,758 **** --- 757,760 ---- { /* Add new patch number below this line */ + /**/ + 3425, /**/ -- Computers are useless. They can only give you answers. -- Pablo Picasso /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///