Code

sideband.c: ESC is spelled '\033' not '\e' for portability.
authorNicolas Pitre <nico@cam.org>
Mon, 5 Nov 2007 01:07:29 +0000 (20:07 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 5 Nov 2007 20:53:14 +0000 (12:53 -0800)
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sideband.c

index 58edea68ee225e22d69a7e4aeada26b9d5cbf1f9..756bbc28d71448781294151cbacd30f68b2bb97b 100644 (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)
 {