From 7ce46e04475e29298f180f69e22cc6fa766b1001 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 17 Aug 2008 07:41:52 -0500 Subject: [PATCH] Allow : to be in 'string' values. --- src/ircd_lexer.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircd_lexer.l b/src/ircd_lexer.l index 4770c3e..e7df1da 100644 --- a/src/ircd_lexer.l +++ b/src/ircd_lexer.l @@ -91,7 +91,7 @@ ws [ \t]* digit [0-9] comment #.* qstring \"[^\"\n]*[\"\n] -string [a-zA-Z_\~][a-zA-Z0-9_]* +string [a-zA-Z_\~\:][a-zA-Z0-9_\:]* include \.include{ws}(\<.*\>|\".*\") %%