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>
maint
Nicolas Pitre 2007-11-04 20:07:29 -05:00 committed by Junio C Hamano
parent ebe8fa738d
commit 0d8aafd252
1 changed files with 1 additions and 1 deletions

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