summaryrefslogtreecommitdiff
path: root/basic/source/comp/loops.cxx
diff options
context:
space:
mode:
authorXisco Faulí <anistenis@gmail.com>2011-03-21 12:55:40 +0100
committerChristina Rossmanith <ChrRossmanith@web.de>2011-03-21 12:55:58 +0100
commitf6e0527033be682dbf6b60bd9b060fdd853ffe33 (patch)
tree2d5ee2a7bface7ce26de0ac42eeb55d6d8050475 /basic/source/comp/loops.cxx
parent41aed87d074878c3a38a7f982f5c2aaad9400189 (diff)
Remove most of dead code inlibs-core (basic)
Diffstat (limited to 'basic/source/comp/loops.cxx')
-rwxr-xr-xbasic/source/comp/loops.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx
index f904c9ee51f3..c3e9159dac3b 100755
--- a/basic/source/comp/loops.cxx
+++ b/basic/source/comp/loops.cxx
@@ -43,7 +43,7 @@ void SbiParser::If()
TestToken( THEN );
if( IsEoln( Next() ) )
{
- // AB 13.5.1996: #27720# Am Ende jeden Blocks muss ein Jump zu ENDIF
+ // Am Ende jeden Blocks muss ein Jump zu ENDIF
// eingefuegt werden, damit bei ELSEIF nicht erneut die Bedingung
// ausgewertet wird. Die Tabelle nimmt alle Absprungstellen auf.
#define JMP_TABLE_SIZE 100
@@ -62,10 +62,9 @@ void SbiParser::If()
Error( SbERR_BAD_BLOCK, IF ); bAbort = sal_True; return;
}
}
- // ELSEIF?
while( eTok == ELSEIF )
{
- // #27720# Bei erfolgreichem IF/ELSEIF auf ENDIF springen
+ // Bei erfolgreichem IF/ELSEIF auf ENDIF springen
if( iJmp >= JMP_TABLE_SIZE )
{
Error( SbERR_PROG_TOO_LARGE ); bAbort = sal_True; return;
@@ -105,7 +104,7 @@ void SbiParser::If()
else if( eTok == ENDIF )
Next();
- // #27720# Jmp-Tabelle abarbeiten
+ // Jmp-Tabelle abarbeiten
while( iJmp > 0 )
{
iJmp--;
@@ -473,7 +472,6 @@ void SbiParser::On()
SbiToken eTok = Peek();
String aString = SbiTokenizer::Symbol(eTok);
if (aString.EqualsIgnoreCaseAscii("ERROR"))
- //if (!aString.ICompare("ERROR"))
eTok = _ERROR_; // Error kommt als SYMBOL
if( eTok != _ERROR_ && eTok != LOCAL ) OnGoto();
else