basic/source/comp/exprtree.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit 379b7ffb68bed5bc376a91032a781be147a6eff1
Author: Pierre Lepage <pierrelepa...@gmail.com>
Date:   Sat Nov 5 14:52:44 2016 -0400

    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 <serval2...@yahoo.fr>
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/basic/source/comp/exprtree.cxx b/basic/source/comp/exprtree.cxx
index e7a2210..008976f 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 );
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to