diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-07-16 16:31:00 +0200 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2010-07-16 16:31:00 +0200 |
commit | 325dec657f22b698dadc1253bbd13d8cfc40f14c (patch) | |
tree | fc96907fb94047c58cb55e59f53fc7a738e6db79 /rsc | |
parent | c6087cfe26349b34b72dd17ef33bc1c385619ce5 (diff) |
vcl113: fix missing isblank on Windows
Diffstat (limited to 'rsc')
-rwxr-xr-x[-rw-r--r--] | rsc/source/parser/rsclex.cxx | 2 |
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 |