Re: [PATCH 1/2] edit: replace %c for literal with literal directly

2019-10-18 Thread Sascha Hauer
On Mon, Oct 14, 2019 at 10:04:07PM +0200, Ahmad Fatoum wrote: > There's no need to use %c for ESC, when we can use the appropriate > escape sequence directly. Do this and shave off 60~ bytes on my > compressed THUMB-2 barebox. > > Signed-off-by: Ahmad Fatoum > --- > commands/edit.c | 18

[PATCH 1/2] edit: replace %c for literal with literal directly

2019-10-14 Thread Ahmad Fatoum
There's no need to use %c for ESC, when we can use the appropriate escape sequence directly. Do this and shave off 60~ bytes on my compressed THUMB-2 barebox. Signed-off-by: Ahmad Fatoum --- commands/edit.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/co