aboutsummaryrefslogtreecommitdiff
path: root/lib/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utf8.c')
-rw-r--r--lib/utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utf8.c b/lib/utf8.c
index 1608c2f8..d37812cc 100644
--- a/lib/utf8.c
+++ b/lib/utf8.c
@@ -97,7 +97,7 @@ int draw_trim_esc(char *str, int padto, int width, char *escmore,
if (padto>=0 && len>width) str += utf8skip(str, len-width);
if (len>width) len = width;
- // Left pad if right justified
+ // Left pad if right justified
if (padto>0 && apad>len) printf("%*s", apad-len, "");
crunch_str(&str, len, stdout, 0, crunch_rev_escape);
if (padto<0 && apad>len) printf("%*s", apad-len, "");