aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'window.c')
-rw-r--r--window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.c b/window.c
index dc3e7dd..27c9d6a 100644
--- a/window.c
+++ b/window.c
@@ -401,7 +401,7 @@ void window_draw(Win *win) {
}
if (sel.start <= pos && pos < sel.end)
- attrs |= A_REVERSE; // TODO: make configurable
+ attrs |= A_REVERSE;
size_t len = mbrtowc(&c.wchar, cur, rem, NULL);
if (len == (size_t)-1 && errno == EILSEQ) {