From 64d6816a36567274551dd4f067fe4d05b1445cc0 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Sun, 26 Nov 2023 23:08:06 +0100 Subject: Completion rework - Add support for building with clang Also fix some annoying bugs: - Visual column was wrong when using tabs - Add shift-tab for inserting an actual tab - Fix minibuffer sometimes having dot above it --- src/dged/utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dged/utf8.c') diff --git a/src/dged/utf8.c b/src/dged/utf8.c index 30344be..b71a7e1 100644 --- a/src/dged/utf8.c +++ b/src/dged/utf8.c @@ -71,7 +71,7 @@ uint32_t utf8_visual_char_width(uint8_t *bytes, uint32_t len) { if (utf8_byte_is_unicode_start(*bytes)) { wchar_t wc; size_t nbytes = 0; - if (nbytes = mbrtowc(&wc, (char *)bytes, len, NULL) > 0) { + if ((nbytes = mbrtowc(&wc, (char *)bytes, len, NULL)) > 0) { return wcwidth(wc); } else { return 0; -- cgit v1.2.3