From 80bb4fd45a18d5f9ca1da40bbae7732be9730b17 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Mon, 20 Jul 2015 23:25:50 +0200 Subject: Fix various Windows issues (e.g. dir separators) --- sapi/phpdbg/phpdbg_lexer.l | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sapi/phpdbg/phpdbg_lexer.l') diff --git a/sapi/phpdbg/phpdbg_lexer.l b/sapi/phpdbg/phpdbg_lexer.l index b9cdc65d22..7fca70f57a 100644 --- a/sapi/phpdbg/phpdbg_lexer.l +++ b/sapi/phpdbg/phpdbg_lexer.l @@ -14,6 +14,7 @@ #define YYGETCONDITION() LEX(state) #define YYCURSOR LEX(cursor) #define YYMARKER LEX(marker) +#define YYCTXMARKER LEX(ctxmarker) #define yyleng LEX(len) #define yytext ((char*) LEX(text)) #undef YYDEBUG @@ -94,7 +95,7 @@ INPUT [^\n\000]+ [:]{2} { return T_DCOLON; } -[:]{1} { +[:]{1}/[^\\] { return T_COLON; } -- cgit v1.2.1