aboutsummaryrefslogtreecommitdiff
path: root/sideband.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-11-04 20:07:29 -0500
committerJunio C Hamano <gitster@pobox.com>2007-11-05 12:53:14 -0800
commit0d8aafd25271c8d1cf185019437e21362edc1bc7 (patch)
tree0e6c2e5807f669c6f2f1fcc6c24ab9f3d710d258 /sideband.c
parentebe8fa738dcf6911fe520adce0cfa0cb26dee5e2 (diff)
downloadgit-0d8aafd25271c8d1cf185019437e21362edc1bc7.tar.gz
git-0d8aafd25271c8d1cf185019437e21362edc1bc7.tar.xz
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.c2
1 files changed, 1 insertions, 1 deletions
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)
{