summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-07-16 16:31:00 +0200
committerPhilipp Lohmann [pl] <Philipp.Lohmann@Sun.COM>2010-07-16 16:31:00 +0200
commit325dec657f22b698dadc1253bbd13d8cfc40f14c (patch)
treefc96907fb94047c58cb55e59f53fc7a738e6db79 /rsc
parentc6087cfe26349b34b72dd17ef33bc1c385619ce5 (diff)
vcl113: fix missing isblank on Windows
Diffstat (limited to 'rsc')
-rwxr-xr-x[-rw-r--r--]rsc/source/parser/rsclex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/parser/rsclex.cxx b/rsc/source/parser/rsclex.cxx
index cc5bd0eb39b4..76ec4c551d52 100644..100755
--- 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