aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/highlight.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-30 21:13:01 +0100
committerGitHub <noreply@github.com>2018-11-30 21:13:01 +0100
commit32a30d90b460048a43490a16d2e006d0e39b0e38 (patch)
tree470cc768df0a98d59b816d93eecf09c263a79813 /src/nvim/highlight.c
parentb0ebf61d37ccae3c480834d2ac1b5559e7e3d20d (diff)
downloadrneovim-32a30d90b460048a43490a16d2e006d0e39b0e38.tar.gz
rneovim-32a30d90b460048a43490a16d2e006d0e39b0e38.tar.bz2
rneovim-32a30d90b460048a43490a16d2e006d0e39b0e38.zip
highlight: Fix missing .rgb_sp_color in initializers (#9287)
terminal_get_line_attributes() had this bug for a long time, though it likely had no effect visible to users. ref #9028 ref 60f845ca55a1
Diffstat (limited to 'src/nvim/highlight.c')
-rw-r--r--src/nvim/highlight.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c
index 12764e8059..5a9727f46e 100644
--- a/src/nvim/highlight.c
+++ b/src/nvim/highlight.c
@@ -188,6 +188,7 @@ int hl_get_underline(void)
.rgb_ae_attr = (int16_t)HL_UNDERLINE,
.rgb_fg_color = -1,
.rgb_bg_color = -1,
+ .rgb_sp_color = -1,
},
.kind = kHlUI,
.id1 = 0,