jdict

command line tool for looking up terms in yomidict dictionaries
git clone anongit@rnpnr.xyz:jdict.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 53bb73ed4482305371e875ac0bfc6067b40c55ca
Parent: 31ee512f17a146afee09c7e3dd73e6eb81961d25
Author: Randy Palamar
Date:   Mon, 14 Oct 2024 22:57:26 -0600

config.def.h: correct string types

Diffstat:
Mconfig.def.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -12,8 +12,8 @@ static char *repl_quit = "\n\033[36m(=^ᆺ^)ノ バイバイ~\033[0m"; /* default yomidicts to search */ Dict default_dict_map[] = { - /* folder name display name */ - {.rom = "daijirin", .name = "【三省堂 スーパー大辞林】"}, - {.rom = "daijisen", .name = "【大辞泉】"}, - {.rom = "koujien", .name = "【広辞苑】"}, + /* folder name display name */ + {.rom = s8("daijirin"), .name = s8("【三省堂 スーパー大辞林】")}, + {.rom = s8("daijisen"), .name = s8("【大辞泉】")}, + {.rom = s8("koujien"), .name = s8("【広辞苑】")}, };