To: vim_dev@googlegroups.com Subject: Patch 9.0.0072 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0072 (after 9.0.0067) Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (John Marriott) Files: src/drawline.c *** ../vim-9.0.0071/src/drawline.c 2022-07-25 18:13:33.046580756 +0100 --- src/drawline.c 2022-07-25 21:11:49.462293072 +0100 *************** *** 819,825 **** { char_u *prev_ptr = ptr; chartabsize_T cts; ! int charsize; init_chartabsize_arg(&cts, wp, lnum, vcol, line, ptr); while (cts.cts_vcol < v && *cts.cts_ptr != NUL) --- 819,825 ---- { char_u *prev_ptr = ptr; chartabsize_T cts; ! int charsize = 0; init_chartabsize_arg(&cts, wp, lnum, vcol, line, ptr); while (cts.cts_vcol < v && *cts.cts_ptr != NUL) *** ../vim-9.0.0071/src/version.c 2022-07-25 19:50:53.954361274 +0100 --- src/version.c 2022-07-25 21:12:53.046258579 +0100 *************** *** 737,738 **** --- 737,740 ---- { /* Add new patch number below this line */ + /**/ + 72, /**/ -- hundred-and-one symptoms of being an internet addict: 124. You begin conversations with, "Who is your internet service provider?" /// 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 ///