Tony wrote:
> On Sun, Jan 6, 2019 at 3:30 PM Bram Moolenaar <[email protected]> wrote: > > > > > > Patch 8.1.0696 > > Problem: When test_edit fails 'insertmode' may not be reset and the next > > test may get stuck. (James McCoy) > > Solution: Always reset 'insertmode' after executing a test. Avoid that an > > InsertCharPre autocommand or a 'complete' function can change > > the > > state. (closes #3768) > > Files: src/testdir/runtest.vim, src/edit.c > > After applying this patch (and patch 697 which does not affect > edit.c), I get the following warning in Huge, Big and Normal but not > in Small and Tiny: > > gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -pthread > -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include > -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo > -I/usr/include/pixman-1 -I/usr/include/libdrm -I/usr/include/libpng16 > -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 > -I/usr/include/harfbuzz -I/usr/include/pango-1.0 > -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include > -I/usr/include/freetype2 -O2 -fno-strength-reduce -Wall > -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/edit.o edit.c > edit.c: In function ‘replace_do_bs’: > edit.c:8043:23: warning: ‘len_before’ may be used uninitialized in > this function [-Wmaybe-uninitialized] > (int)(len_now - len_before)); > ~~~~~~~~~^~~~~~~~~~~~~ Thanks for reporting. I'll init len_before, even though it's not really needed. -- Amnesia is one of my favorite words, but I forgot what it means. /// 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]. For more options, visit https://groups.google.com/d/optout.
