diff options
author | Neil <nyamatongwe@gmail.com> | 2021-08-24 11:39:57 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-08-24 11:39:57 +1000 |
commit | dc0398d650e75efe9641f0c48d630f2c2027281a (patch) | |
tree | 83819a98c36c4b1c6a011d9524e26eb5b87da3d3 /doc/Scintilla5Migration.html | |
parent | f756e89f53b407432c7db7c4134bfdb8af94d964 (diff) | |
download | scintilla-mirror-dc0398d650e75efe9641f0c48d630f2c2027281a.tar.gz |
Remove line end white space.
Diffstat (limited to 'doc/Scintilla5Migration.html')
-rw-r--r-- | doc/Scintilla5Migration.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/Scintilla5Migration.html b/doc/Scintilla5Migration.html index 3f8b916ee..6b09f288f 100644 --- a/doc/Scintilla5Migration.html +++ b/doc/Scintilla5Migration.html @@ -101,15 +101,15 @@ <h2>From C++: LexillaAccess</h2> <p>The easiest technique is to implement in C++ using LexillaAccess and load a Lexilla shared library.</p> - + <p>LexillaAccess simplifies use of Lexilla, hides operating system differences, and allows loading multiple libraries that support the Lexilla protocol. It is defined in lexilla/access/LexillaAccess.h and the source code is in lexilla/access/LexillaAccess.cxx. Add these to the build dependencies of the project or build file.</p> - + <p>Both SciTE and TestLexers (used to test Lexilla) in lexilla/test use LexillaAccess. TestLexers is much simpler than SciTE so can be a good example to examine.</p> - + <h3>Building</h3> <p>Header files for lexers and for using Lexilla will be included so build files will need to reference these new locations. @@ -169,7 +169,7 @@ for a sufficiently motivated developer to call methods on the lexer from C.</p> <p>There is an example for using Lexilla from C in examples/CheckLexilla.</p> - + <h3>Steps in code</h3> <p>Include the system header for loading shared objects. |