Tony wrote: > "Subscript is above array bounds", see below; In Huge build with > +terminal, not in Tiny build with -terminal. > > On Thu, Sep 14, 2017 at 12:01 AM, Bram Moolenaar <[email protected]> wrote: > > > > Patch 8.0.1102 > > Problem: Terminal window does not use Normal colors. > > Solution: For the GUI and when 'termguicolors' is enabled, use the actual > > foreground and background colors for the terminal. (Yasuhiro > > Matsumoto, closes #2067) > > Use the "Terminal" highlight group if defined. > > Files: src/terminal.c, src/syntax.c, src/proto/syntax.pro > > 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/libpng16 > -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 -D_REENTRANT > -DORBIT2=1 -pthread -I/usr/include/libgnomeui-2.0 > -I/usr/include/gnome-keyring-1 -I/usr/include/libbonoboui-2.0 > -I/usr/include/libxml2 -I/usr/include/libgnome-2.0 > -I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 > -I/usr/include/orbit-2.0 -I/usr/include/libgnomecanvas-2.0 > -I/usr/include/gail-1.0 -I/usr/include/libart-2.0 > -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/pango-1.0 -I/usr/include/harfbuzz > -I/usr/include/pango-1.0 -I/usr/include/freetype2 > -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 > -I/usr/include/gnome-vfs-2.0 -I/usr/lib64/gnome-vfs-2.0/include > -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 > -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 > -I/usr/lib64/glib-2.0/include -O2 -fno-strength-reduce -Wall > -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/terminal.o > terminal.c > terminal.c: In function ‘cterm_color2rgb’: > terminal.c:2440:24: warning: array subscript is above array bounds > [-Warray-bounds] > rgb->blue = grey_ramp[nr];
That should be "idx" instead of "nr". -- hundred-and-one symptoms of being an internet addict: 118. You are on a first-name basis with your ISP's staff. /// 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.
