EgtGeneral 2.7l6 :

- piccola miglioria nello Scanner per il riconoscimento  delle linee di commento.
This commit is contained in:
Dario Sassi
2025-12-29 08:43:45 +01:00
parent e07e0e553f
commit 0e650a034d
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ Scanner::GetLine( string& sLine)
// incremento contatore di linee
m_nLineNbr ++ ;
} while ( ( m_bSkipEmptyLine && sLine.empty()) ||
( m_bFindRem && sLine.find( m_sRemInit) == 0)) ;
( m_bFindRem && sLine.rfind( m_sRemInit, 0) == 0)) ;
m_nDeltaLineUnget = m_nLineNbr - nOldLineNbr ;
}
return true ;