From: Nicolas Pitre Date: Mon, 5 Nov 2007 01:07:29 +0000 (-0500) Subject: sideband.c: ESC is spelled '\033' not '\e' for portability. X-Git-Tag: v1.5.4-rc0~211^2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0d8aafd25271c8d1cf185019437e21362edc1bc7;p=git.git sideband.c: ESC is spelled '\033' not '\e' for portability. Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- diff --git a/sideband.c b/sideband.c index 58edea68e..756bbc28d 100644 --- a/sideband.c +++ b/sideband.c @@ -13,7 +13,7 @@ */ #define PREFIX "remote:" -#define SUFFIX "\e[K" /* change to " " if ANSI sequences don't work */ +#define SUFFIX "\033[K" /* change to " " if ANSI sequences don't work */ int recv_sideband(const char *me, int in_stream, int out, int err) {