From 6bfbb4db1d3708ce4ea69d29f3afe73def5a9f2a Mon Sep 17 00:00:00 2001 From: bfredl Date: Wed, 18 Jan 2023 13:59:40 +0100 Subject: fix(unittests): fix TUI broken test previously ignored --- src/nvim/ui_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/ui_client.h') diff --git a/src/nvim/ui_client.h b/src/nvim/ui_client.h index 201c97f9d3..7e5f847039 100644 --- a/src/nvim/ui_client.h +++ b/src/nvim/ui_client.h @@ -31,7 +31,7 @@ EXTERN bool ui_client_attached INIT(= false); /// Whether ui client has gotten a response about the bg color of the terminal, /// kTrue=dark, kFalse=light, kNone=no response yet -EXTERN TriState ui_client_bg_respose INIT(= kNone); +EXTERN TriState ui_client_bg_response INIT(= kNone); /// The ui client should forward its stdin to the nvim process /// by convention, this uses fd=3 (next free number after stdio) -- cgit