diff options
author | Nicolas Pitre <nico@cam.org> | 2007-11-04 20:07:29 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-05 12:53:14 -0800 |
commit | 0d8aafd25271c8d1cf185019437e21362edc1bc7 (patch) | |
tree | 0e6c2e5807f669c6f2f1fcc6c24ab9f3d710d258 /sideband.c | |
parent | ebe8fa738dcf6911fe520adce0cfa0cb26dee5e2 (diff) | |
download | git-0d8aafd25271c8d1cf185019437e21362edc1bc7.tar.gz |
sideband.c: ESC is spelled '\033' not '\e' for portability.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sideband.c')
-rw-r--r-- | sideband.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sideband.c b/sideband.c index 58edea68ee..756bbc28d7 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) { |