I believe you have to do a little change to LexSQL.cxx and recompile Scintilla.
See the FoldSQLDoc function, look at strcmp(s, "end") call and around.
--
Philippe Lhoste
-- (near) Paris -- France
-- http://Phi.Lho.free.fr
-- -- -- -- -- -- -- -- -- -- -- -- -- --
> In that I believe I utilize scintilla through the Notepad++
> application would I need to learn to compile both or is it possible
> this change could be incorporated into scintilla. I do not believe
> supporting ENDIF (no space) will be a big issue for SQL databases that
> do not support ENDIF no space. Or would creating a new lexSANY.cxx
> adding a new menu option be the preferred approach to get this
> incorporated into the base scintilla release?
Since it only triggers if endif is in the SCE_SQL_WORD style, the
application won't see any change unless endif is one of its keywrds.
Thus it is safe if you just add endif to the indicated clause.
Neil