From 75b89012c90470a27d66b54ad89901b94fcfd169 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 6 Dec 2020 00:02:46 -0600 Subject: Remove CONFIG_TOYBOX_I18N and just always support utf8. --- toys/example/demo_utf8towc.c | 1 - toys/posix/expand.c | 24 ++++++++++-------------- 2 files changed, 10 insertions(+), 15 deletions(-) (limited to 'toys') diff --git a/toys/example/demo_utf8towc.c b/toys/example/demo_utf8towc.c index 25737856..c0522543 100644 --- a/toys/example/demo_utf8towc.c +++ b/toys/example/demo_utf8towc.c @@ -6,7 +6,6 @@ USE_DEMO_UTF8TOWC(NEWTOY(demo_utf8towc, 0, TOYFLAG_USR|TOYFLAG_BIN)) config DEMO_UTF8TOWC bool "demo_utf8towc" - depends on TOYBOX_I18N default n help usage: demo_utf8towc diff --git a/toys/posix/expand.c b/toys/posix/expand.c index f1fd8d33..f3cd44d0 100644 --- a/toys/posix/expand.c +++ b/toys/posix/expand.c @@ -43,22 +43,18 @@ static void do_expand(int fd, char *name) } if (!len) break; for (i=0; i 1) { - if (width != fwrite(toybuf+i, width, 1, stdout)) - perror_exit("stdout"); - i += width-1; - x++; - continue; - } else if (width == -2) break; - else if (width == -1) continue; - } + if (width > 1) { + if (width != fwrite(toybuf+i, width, 1, stdout)) + perror_exit("stdout"); + i += width-1; + x++; + continue; + } else if (width == -2) break; + else if (width == -1) continue; c = toybuf[i]; if (c != '\t') { -- cgit v1.2.3