Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2007-11-05 04:07:29 +0300
committerJunio C Hamano <gitster@pobox.com>2007-11-05 23:53:14 +0300
commit0d8aafd25271c8d1cf185019437e21362edc1bc7 (patch)
tree0e6c2e5807f669c6f2f1fcc6c24ab9f3d710d258 /sideband.c
parentebe8fa738dcf6911fe520adce0cfa0cb26dee5e2 (diff)
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 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)
{