diff options
author | Pierre Lepage <pierrelepage3@gmail.com> | 2016-11-05 14:52:44 -0400 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-30 06:42:48 +0000 |
commit | 379b7ffb68bed5bc376a91032a781be147a6eff1 (patch) | |
tree | 80dce2b9462a1e117cad14272a288498be6db449 /basic | |
parent | 4c5224a29fc11125bc845624a0ffe470416b791c (diff) |
tdf#80731 Closing parenthesis is now detected (Mid statement and functions).
Change-Id: I5efdb6c3ce71148672a8b76d3f1cc87b0fe04994
Reviewed-on: https://gerrit.libreoffice.org/30593
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/comp/exprtree.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx index e7a2210ada0c..008976f1a7d6 100644 --- a/basic/source/comp/exprtree.cxx +++ b/basic/source/comp/exprtree.cxx @@ -1055,6 +1055,11 @@ SbiExprListPtr SbiExprList::ParseParameters( SbiParser* pParser, bool bStandalon { if( ( pExprList->bBracket && eTok == RPAREN ) || SbiTokenizer::IsEoln( eTok ) ) { + if ( SbiTokenizer::IsEoln( eTok ) && pExprList->bBracket) + { + pParser->Error( ERRCODE_BASIC_EXPECTED, RPAREN ); + pExprList->bError = true; + } break; } pParser->Error( pExprList->bBracket ? ERRCODE_BASIC_BAD_BRACKETS : ERRCODE_BASIC_EXPECTED, COMMA ); |