diff options
author | Rob Landley <rob@landley.net> | 2016-01-17 17:16:03 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-17 17:16:03 -0600 |
commit | ba86864699997b0da780e15fd6be33c8a556e927 (patch) | |
tree | a8dea4dcbac3ba9c075ef2df54a77f36ddc2d4d9 /toys/other | |
parent | 3b17f66c10af679f7ce3cd7b17af3b13664cde0c (diff) | |
download | toybox-ba86864699997b0da780e15fd6be33c8a556e927.tar.gz |
Extend utf8 fontmetrics so ps can use them.
Also, I forgot to check in uuid_show() last time.
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/hexedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/hexedit.c b/toys/other/hexedit.c index b2e32c0e..ff13b513 100644 --- a/toys/other/hexedit.c +++ b/toys/other/hexedit.c @@ -56,7 +56,7 @@ static void draw_tail(void) tty_jump(0, TT.height); tty_esc("K"); - draw_rstr(*toys.optargs, 71); + draw_trim(*toys.optargs, -1, 71); } static void draw_line(long long yy) |