hysteria

ii wrapper script
git clone git://git.2f30.org/hysteria
Log | Files | Refs | README | LICENSE

commit 8866d75de789db1e74441a243761b4993ff6c9e0
parent 7a10cda6ad19e4d4c9db74393d9c0763e93d1395
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Thu,  8 May 2014 20:02:37 +0000

highlight.c: fix regexnick regex

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Mhighlight.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/highlight.c b/highlight.c @@ -29,7 +29,7 @@ static const char *reset = "\x1b[1;0m"; /* regex to match */ /*static const char *regexaction = "ACTION (.*)?";*/ /* TODO */ -static const char *regexnick = "(((evil_bob|bob|hiltjo)"; +static const char *regexnick = "(evil_bob|bob|hiltjo)"; static const char *regexnickalign = "^[0-9]{2}:[0-9]{2} <"; static const char *regexserver = "^(.* -!- .*)$"; static const char *regextimestamp = "^[0-9]{4}-[0-9]{2}-[0-9]{2} ";