diff --git a/transex3/source/srclex.l b/transex3/source/srclex.l index 323ff4e17548..c1f2023470db 100644 --- a/transex3/source/srclex.l +++ b/transex3/source/srclex.l @@ -81,12 +81,12 @@ void YYWarning(); } } -(^[\t ]*"#ifndef".+$) | -(^[\t ]*"#ifdef".+$) | -(^[\t ]*"#if".+$) | -(^[\t ]*"#elif".*$) | -(^[\t ]*"#else".*$) | -(^[\t ]*"#endif".*$) { +^[\t ]*"#ifndef".+$ | +^[\t ]*"#ifdef".+$ | +^[\t ]*"#if".+$ | +^[\t ]*"#elif".*$ | +^[\t ]*"#else".*$ | +^[\t ]*"#endif".*$ { WorkOnTokenSet( CONDITION, yytext ); }