From 657e30db1cf5e9de4ae403d8b2b4a532211aed1e Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 17 Jun 2017 14:48:59 +0100 Subject: [PATCH] Use already stored coordinates in show_whitespaces --- src/highlighters.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/highlighters.cc b/src/highlighters.cc index 72154f13..36904b20 100644 --- a/src/highlighters.cc +++ b/src/highlighters.cc @@ -941,7 +941,7 @@ void show_whitespaces(const Context& context, HighlightPass, DisplayBuffer& disp if (cp == '\t') { - int column = (int)get_column(buffer, tabstop, (it - 1).coord()); + int column = (int)get_column(buffer, tabstop, coord); int count = tabstop - (column % tabstop); atom_it->replace(tab + String(tabpad[(CharCount)0], CharCount{count-1})); }