aboutsummaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-19 13:51:40 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-19 13:51:40 +0200
commit43a4ad606d2bed35bdb418bffe42d885f57c042b (patch)
tree7f9e39cb2a684b339ec4d2f6c7a1272d75a843bc /window.c
parenta85d110f2859d3e44547b43d1948080c78b6d867 (diff)
downloadvis-43a4ad606d2bed35bdb418bffe42d885f57c042b.tar.gz
vis-43a4ad606d2bed35bdb418bffe42d885f57c042b.tar.xz
Remove some TODO items
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) {