summaryrefslogtreecommitdiff
path: root/color.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-06-28 10:02:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-28 16:18:50 (GMT)
commit3d0a83382f26c5385ffcfa3fb0d9b7d69d998647 (patch)
tree671cd17116592feb737335632920ce96ed275b19 /color.h
parent765428699a5381f113d19974720bc91b5bfeaf1d (diff)
downloadgit-3d0a83382f26c5385ffcfa3fb0d9b7d69d998647.zip
git-3d0a83382f26c5385ffcfa3fb0d9b7d69d998647.tar.gz
git-3d0a83382f26c5385ffcfa3fb0d9b7d69d998647.tar.bz2
color.h: remove obsolete comment about limitations on Windows
Originally, ANSI color sequences were supported on Windows only by overriding the printf() and fprintf() functions, as mentioned in e7821d7 (Add a notice that only certain functions can print color escape codes, 2009-11-27). As of eac14f8 (Win32: Thread-safe windows console output, 2012-01-14), however, this is no longer the case, as the ANSI color sequence support code needed to be replaced with a thread-safe version, one side effect being that stdout and stderr handled no matter which function is used to write to it. So let's just remove the comment that is now obsolete. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'color.h')
-rw-r--r--color.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/color.h b/color.h
index 7fe77fb..085924f 100644
--- a/color.h
+++ b/color.h
@@ -18,11 +18,6 @@ struct strbuf;
*/
#define COLOR_MAXLEN 70
-/*
- * IMPORTANT: Due to the way these color codes are emulated on Windows,
- * write them only using printf(), fprintf(), and fputs(). In particular,
- * do not use puts() or write().
- */
#define GIT_COLOR_NORMAL ""
#define GIT_COLOR_RESET "\033[m"
#define GIT_COLOR_BOLD "\033[1m"