patch 8.0.0921: terminal window cursor shape not supported in the GUI
Problem: Terminal window cursor shape not supported in the GUI.
Solution: Use the terminal window cursor shape in the GUI.
diff --git a/src/syntax.c b/src/syntax.c
index 2b06b46..4c0fa3f 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -103,7 +103,6 @@
#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
static void gui_do_one_color(int idx, int do_menu, int do_tooltip);
-static guicolor_T color_name2handle(char_u *name);
#endif
#ifdef FEAT_GUI
static int set_group_colors(char_u *name, guicolor_T *fgp, guicolor_T *bgp, int do_menu, int use_norm, int do_tooltip);
@@ -8622,7 +8621,7 @@
* Return the handle for a color name.
* Returns INVALCOLOR when failed.
*/
- static guicolor_T
+ guicolor_T
color_name2handle(char_u *name)
{
if (STRCMP(name, "NONE") == 0)