From 8187e0143874e1bf0412263e716cf8c782a5aa16 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 13 Sep 2017 22:48:30 +0200 Subject: *: use ESC define instead of "\033"; use ESC[m instead of ESC[0m text data bss dec hex filename 922535 481 6832 929848 e3038 busybox_old 922534 481 6832 929847 e3037 busybox_unstripped Signed-off-by: Denys Vlasenko --- miscutils/less.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miscutils/less.c') diff --git a/miscutils/less.c b/miscutils/less.c index f37c80ad8..241f7f8ba 100644 --- a/miscutils/less.c +++ b/miscutils/less.c @@ -137,7 +137,7 @@ #define ESC "\033" /* The escape codes for highlighted and normal text */ #define HIGHLIGHT ESC"[7m" -#define NORMAL ESC"[0m" +#define NORMAL ESC"[m" /* The escape code to home and clear to the end of screen */ #define CLEAR ESC"[H"ESC"[J" /* The escape code to clear to the end of line */ @@ -1042,7 +1042,7 @@ static void reinitialize(void) open_file_and_read_lines(); #if ENABLE_FEATURE_LESS_ASK_TERMINAL if (G.winsize_err) - printf("\033[999;999H" "\033[6n"); + printf(ESC"[999;999H" ESC"[6n"); #endif buffer_fill_and_print(); } -- cgit v1.2.3