1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-19 14:06:37 +02:00

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>
This commit is contained in:
Nicolas Pitre 2007-11-04 20:07:29 -05:00 committed by Junio C Hamano
parent ebe8fa738d
commit 0d8aafd252

View File

@ -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)
{