diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-24 21:04:52 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-24 21:04:52 +0000 |
commit | be2f097b63c87dd7e93306557a2f5bc71ed45e08 (patch) | |
tree | 8ce65001f0e0b8f5f538fd61dac7280b43bd82f8 | |
parent | e0c4922635adf1385c7e4263c05df9ce58dd6a4a (diff) | |
download | php-git-be2f097b63c87dd7e93306557a2f5bc71ed45e08.tar.gz |
remove annoying blinking
-rw-r--r-- | phpdbg_utils.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/phpdbg_utils.c b/phpdbg_utils.c index 59c920d63a..2c73f9b55b 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -39,35 +39,27 @@ const static phpdbg_color_t colors[] = { PHPDBG_COLOR_D("white", "0;64"), PHPDBG_COLOR_D("white-bold", "1;64"), PHPDBG_COLOR_D("white-underline", "4;64"), - PHPDBG_COLOR_D("white-blink", "5;64"), PHPDBG_COLOR_D("red", "0;31"), PHPDBG_COLOR_D("red-bold", "1;31"), PHPDBG_COLOR_D("red-underline", "4;31"), - PHPDBG_COLOR_D("red-blink", "5;31"), PHPDBG_COLOR_D("green", "0;32"), PHPDBG_COLOR_D("green-bold", "1;32"), PHPDBG_COLOR_D("green-underline", "4;32"), - PHPDBG_COLOR_D("green-blink", "5;32"), PHPDBG_COLOR_D("yellow", "0;33"), PHPDBG_COLOR_D("yellow-bold", "1;33"), PHPDBG_COLOR_D("yellow-underline", "4;33"), - PHPDBG_COLOR_D("yellow-blink", "5;33"), PHPDBG_COLOR_D("blue", "0;34"), PHPDBG_COLOR_D("blue-bold", "1;34"), PHPDBG_COLOR_D("blue-underline", "4;34"), - PHPDBG_COLOR_D("blue-blink", "5;34"), PHPDBG_COLOR_D("purple", "0;35"), PHPDBG_COLOR_D("purple-bold", "1;35"), PHPDBG_COLOR_D("purple-underline", "4;35"), - PHPDBG_COLOR_D("purple-blink", "5;35"), PHPDBG_COLOR_D("cyan", "0;36"), PHPDBG_COLOR_D("cyan-bold", "1;36"), PHPDBG_COLOR_D("cyan-underline", "4;36"), - PHPDBG_COLOR_D("cyan-blink", "5;36"), PHPDBG_COLOR_D("black", "0;30"), PHPDBG_COLOR_D("black-bold", "1;30"), PHPDBG_COLOR_D("black-underline", "4;30"), - PHPDBG_COLOR_D("black-blink", "5;30"), PHPDBG_COLOR_END }; /* }}} */ |