From 325dec657f22b698dadc1253bbd13d8cfc40f14c Mon Sep 17 00:00:00 2001 From: "Philipp Lohmann [pl]" Date: Fri, 16 Jul 2010 16:31:00 +0200 Subject: vcl113: fix missing isblank on Windows --- rsc/source/parser/rsclex.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 rsc/source/parser/rsclex.cxx (limited to 'rsc/source/parser/rsclex.cxx') diff --git a/rsc/source/parser/rsclex.cxx b/rsc/source/parser/rsclex.cxx old mode 100644 new mode 100755 index cc5bd0eb39b4..76ec4c551d52 --- a/rsc/source/parser/rsclex.cxx +++ b/rsc/source/parser/rsclex.cxx @@ -179,7 +179,7 @@ int MakeToken( YYSTYPE * pTokenVal ){ { c = pFI->GetFastChar(); } - while( isblank( c ) ); + while( c == ' ' || c == '\t' ); if( c == '"' ) { // this is a continued string -- cgit v1.2.3