From 32a30d90b460048a43490a16d2e006d0e39b0e38 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 30 Nov 2018 21:13:01 +0100 Subject: 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 --- test/functional/core/main_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/core/main_spec.lua') diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua index cd396ef820..a0981e9207 100644 --- a/test/functional/core/main_spec.lua +++ b/test/functional/core/main_spec.lua @@ -77,8 +77,8 @@ describe('Command-line option', function() | | ]], { - [1] = {foreground = 4210943, special = Screen.colors.Grey0}, - [2] = {special = Screen.colors.Grey0, bold = true, reverse = true} + [1] = {foreground = 4210943}, + [2] = {bold = true, reverse = true} }) feed('i:cq') screen:expect([[ -- cgit