From ed8818f4a1ac559cd4092c3884d2e76cc1ec2efe Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 5 Jul 2020 12:21:22 +0200 Subject: [PATCH] [options] latin1_title is bool. --- src/config/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/options.c b/src/config/options.c index f80fa922..e4f4ed9f 100644 --- a/src/config/options.c +++ b/src/config/options.c @@ -796,7 +796,7 @@ register_autocreated_options(void) get_opt_bool("terminal.fbterm.underline", NULL) = 0; #endif get_opt_int("terminal.st-256color.type", NULL) = TERM_VT100; - get_opt_int("terminal.st-256color.latin1_title", NULL) = 0; + get_opt_bool("terminal.st-256color.latin1_title", NULL) = 0; #ifdef CONFIG_TRUE_COLOR get_opt_int("terminal.st-256color.colors", NULL) = COLOR_MODE_TRUE_COLOR; #elif defined(CONFIG_256_COLORS)