From 189b9e23edfe60b7e82c4c7b6071a3f98799653a Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 26 Oct 2021 21:32:55 -0700 Subject: fix(unicode): renamed functions to be easier to understand their functions --- sys/cmd/dwm/drw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/cmd/dwm') diff --git a/sys/cmd/dwm/drw.c b/sys/cmd/dwm/drw.c index 825e2f4..a6d6902 100644 --- a/sys/cmd/dwm/drw.c +++ b/sys/cmd/dwm/drw.c @@ -227,7 +227,7 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lp utf8str = text; nextfont = NULL; while (*text) { - utf8charlen = utf8·bytetorune(&utf8codepoint, text); + utf8charlen = utf8·decode(text, &utf8codepoint); for (curfont = drw->fonts; curfont; curfont = curfont->next) { charexists = charexists || XftCharExists(drw->dpy, curfont->xfont, utf8codepoint); if (charexists) { -- cgit v1.2.1