aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-01-26 04:08:21 -0500
committerJesse Luehrs <doy@tozt.net>2017-01-26 04:08:21 -0500
commitd47bd526aa0a8c5ae2cd697f4a8294702fd96944 (patch)
tree7b616cce302523ecd0f2850be017617c4e867c84 /src/window-xlib.c
parent3df4d06fd663bf19f08343b0d77c20672301b9b2 (diff)
downloadrunes-d47bd526aa0a8c5ae2cd697f4a8294702fd96944.tar.gz
runes-d47bd526aa0a8c5ae2cd697f4a8294702fd96944.zip
remove the wide emoji hacks
they have been folded into modern versions of glib (>= 2.50.1) as part of unicode 9.0.0
Diffstat (limited to 'src/window-xlib.c')
-rw-r--r--src/window-xlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index fde8f43..c12602f 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -1213,7 +1213,7 @@ static int runes_window_is_word_char(RunesTerm *t, int row, int col)
}
uc = g_utf8_get_char(c->contents);
- if (vt100_char_width(uc, t->config->wide_emoji) == 0) {
+ if (vt100_char_width(uc) == 0) {
return 0;
}
if (g_unichar_isspace(uc)) {