This commit includes the following changes:
authorEric W. Sink <eric@sourcegear.com>
Thu, 30 Mar 2000 18:43:38 +0000 (18:43 +0000)
committerEric W. Sink <eric@sourcegear.com>
Thu, 30 Mar 2000 18:43:38 +0000 (18:43 +0000)
commit64a3ee5fd2926c3e5341af2e4d62925fddb90c43
tree5958e5ca067d21b628460d47f35c30900f75eb6c
parent13d7105a666c18199ebb1d98e0663b6d382cd761
This commit includes the following changes:

1.  I have grabbed a new copy of the original Scintilla code from its
CVS repository on SourceForge.  I believe this code corresponds to
Scintilla 1.24.

2.  That code included several new files (stc/scintilla/src/Lex*.cxx)

3.  I added mentions of those files to Makefile.in and the .dsp file.

4.  I added a new required method to PlatWX.cpp, but it doesn't do
anything, and I don't think it needs to.

5.  I added code to stc.cpp which gratuitously references all of the
lexers, to prevent them from being optimized away by the linker.

6.  I modified (stc/scintilla/src/Lex*.cxx) to make the LexerModule
objects externally visible.

Gripes to me.  (eric@sourcegear.com)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
70 files changed:
contrib/src/stc/Makefile.in
contrib/src/stc/PlatWX.cpp
contrib/src/stc/ScintillaWX.cpp
contrib/src/stc/StcVC.dsp
contrib/src/stc/scintilla/include/Accessor.h
contrib/src/stc/scintilla/include/KeyWords.h
contrib/src/stc/scintilla/include/Platform.h
contrib/src/stc/scintilla/include/SciLexer.h
contrib/src/stc/scintilla/include/Scintilla.h
contrib/src/stc/scintilla/src/Accessor.cxx [copied from src/stc/scintilla/src/Accessor.cxx with 58% similarity]
contrib/src/stc/scintilla/src/CellBuffer.cxx
contrib/src/stc/scintilla/src/CellBuffer.h
contrib/src/stc/scintilla/src/ContractionState.cxx
contrib/src/stc/scintilla/src/Document.cxx
contrib/src/stc/scintilla/src/Document.h
contrib/src/stc/scintilla/src/Editor.cxx
contrib/src/stc/scintilla/src/Editor.h
contrib/src/stc/scintilla/src/KeyMap.cxx
contrib/src/stc/scintilla/src/KeyMap.h
contrib/src/stc/scintilla/src/KeyWords.cxx
contrib/src/stc/scintilla/src/LexCPP.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexHTML.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexOthers.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexPerl.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexPython.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexSQL.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LexVB.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/PropSet.cxx
contrib/src/stc/scintilla/src/SVector.h
contrib/src/stc/scintilla/src/ScintillaBase.cxx
contrib/src/stc/scintilla/src/Style.cxx
contrib/src/stc/scintilla/src/Style.h [copied from src/stc/scintilla/src/Style.h with 67% similarity]
contrib/src/stc/scintilla/src/ViewStyle.cxx
contrib/src/stc/scintilla/src/ViewStyle.h
contrib/src/stc/stc.cpp
src/stc/Makefile.in
src/stc/PlatWX.cpp
src/stc/ScintillaWX.cpp
src/stc/StcVC.dsp
src/stc/scintilla/include/Accessor.h
src/stc/scintilla/include/KeyWords.h
src/stc/scintilla/include/Platform.h
src/stc/scintilla/include/SciLexer.h [copied from contrib/src/stc/scintilla/include/SciLexer.h with 53% similarity]
src/stc/scintilla/include/Scintilla.h
src/stc/scintilla/src/Accessor.cxx
src/stc/scintilla/src/CellBuffer.cxx
src/stc/scintilla/src/CellBuffer.h
src/stc/scintilla/src/ContractionState.cxx
src/stc/scintilla/src/Document.cxx
src/stc/scintilla/src/Document.h
src/stc/scintilla/src/Editor.cxx
src/stc/scintilla/src/Editor.h
src/stc/scintilla/src/KeyMap.cxx [copied from contrib/src/stc/scintilla/src/KeyMap.cxx with 69% similarity]
src/stc/scintilla/src/KeyMap.h
src/stc/scintilla/src/KeyWords.cxx
src/stc/scintilla/src/LexCPP.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexHTML.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexOthers.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexPerl.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexPython.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexSQL.cxx [new file with mode: 0644]
src/stc/scintilla/src/LexVB.cxx [new file with mode: 0644]
src/stc/scintilla/src/PropSet.cxx
src/stc/scintilla/src/SVector.h
src/stc/scintilla/src/ScintillaBase.cxx
src/stc/scintilla/src/Style.cxx [copied from contrib/src/stc/scintilla/src/Style.cxx with 56% similarity]
src/stc/scintilla/src/Style.h
src/stc/scintilla/src/ViewStyle.cxx
src/stc/scintilla/src/ViewStyle.h
src/stc/stc.cpp