diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-07-13 19:07:36 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2017-07-14 02:52:54 +0200 |
commit | b9bda1d7916c5474aab89116757fcb7e799458b2 (patch) | |
tree | 7bba0353f35a7d09642b77cd73b9482e127b2128 /basic/source | |
parent | a2e670df4efb219a1f92946d7a2887bdd0f88f5d (diff) |
tdf#103104 Allow line-continuation followed by a dot in BASIC
as in VBA-compatibility mode.
Change-Id: If263183fc1fa5742235213a8617fdf412d2a245e
Reviewed-on: https://gerrit.libreoffice.org/39893
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/comp/scanner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx index 48072debbd15..0cf8ed49c6b3 100644 --- a/basic/source/comp/scanner.cxx +++ b/basic/source/comp/scanner.cxx @@ -626,7 +626,7 @@ eoln: { pLine = nullptr; bool bRes = NextSym(); - if( bVBASupportOn && aSym.startsWith(".") ) + if( aSym.startsWith(".") ) { // object _ // .Method |