<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/src, branch rel-5-3-2</title>
<subtitle>Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/'/>
<entry>
<title>Detangle ASCII and multi-byte code for case-insenstive UTF-8 searches.</title>
<updated>2022-12-01T22:48:42+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-12-01T22:48:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=85dd43cb420a7be3cd5ec2520f55685327978af0'/>
<id>85dd43cb420a7be3cd5ec2520f55685327978af0</id>
<content type='text'>
This avoids some work for the common case of ASCII text, which can reduce time
taken for search in text that is ASCII or almost-all ASCII by 30%.
Ensures that the bytes variable is always initialized.
There are a small gains possible by making other minor changes but they would
increase code length and add complexity.
Add performance test for UTF-8 search in almost-all ASCII document.
Increase size of test cases for more consistent results on faster computers.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This avoids some work for the common case of ASCII text, which can reduce time
taken for search in text that is ASCII or almost-all ASCII by 30%.
Ensures that the bytes variable is always initialized.
There are a small gains possible by making other minor changes but they would
increase code length and add complexity.
Add performance test for UTF-8 search in almost-all ASCII document.
Increase size of test cases for more consistent results on faster computers.
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure variable is initialized.</title>
<updated>2022-12-01T22:38:57+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-12-01T22:38:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=2a15393d36841175ffc27cac959bbc49af40ff29'/>
<id>2a15393d36841175ffc27cac959bbc49af40ff29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1458] Move code into member functions, use</title>
<updated>2022-12-01T22:02:19+00:00</updated>
<author>
<name>Zufu Liu</name>
<email>unknown</email>
</author>
<published>2022-12-01T22:02:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=312b3bc50a7d8de832b1a8681644ba4681a9a598'/>
<id>312b3bc50a7d8de832b1a8681644ba4681a9a598</id>
<content type='text'>
string_view and constexpr.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
string_view and constexpr.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change release compilation optimization option to favour speed over space.</title>
<updated>2022-12-01T06:27:09+00:00</updated>
<author>
<name>Mitchell Foral</name>
<email>unknown</email>
</author>
<published>2022-12-01T06:27:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9a400bd33f0cb4f322de4208bb7159673a399521'/>
<id>9a400bd33f0cb4f322de4208bb7159673a399521</id>
<content type='text'>
-O2 for MSVC and -O3 for gcc and clang.
Change code in Editor.cxx to avoid a warning that occurs with gcc -O3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-O2 for MSVC and -O3 for gcc and clang.
Change code in Editor.cxx to avoid a warning that occurs with gcc -O3.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2363]. Change 'paragraph up' commands SCI_PARAUP and SCI_PARAUPEXTEND to</title>
<updated>2022-11-28T06:59:01+00:00</updated>
<author>
<name>Michael Heath</name>
<email>unknown</email>
</author>
<published>2022-11-28T06:59:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=8cedd574bc15453d86926a71f9a8197dc5fdb5ee'/>
<id>8cedd574bc15453d86926a71f9a8197dc5fdb5ee</id>
<content type='text'>
go to the start position of the paragraph containing the caret.
Only if the caret is already at the start of the paragraph will it go to the
start of the previous paragraph.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
go to the start position of the paragraph containing the caret.
Only if the caret is already at the start of the paragraph will it go to the
start of the previous paragraph.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add const and noexcept where sensible.</title>
<updated>2022-11-24T07:38:37+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-11-24T07:38:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=b9cef6c5e4baa41bfe1ff073d662153cb44880d7'/>
<id>b9cef6c5e4baa41bfe1ff073d662153cb44880d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add SCI_REPLACETARGETMINIMAL to change text without causing unchanged prefix and</title>
<updated>2022-11-21T22:24:07+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-11-21T22:24:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cb8cd73d839a96f98bb1ce887c694271f9c24788'/>
<id>cb8cd73d839a96f98bb1ce887c694271f9c24788</id>
<content type='text'>
suffix to be marked as modified in change history.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
suffix to be marked as modified in change history.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix last change with CharacterExtracted to work on Unix.</title>
<updated>2022-11-13T21:48:18+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-11-13T21:48:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=b3e46461ce564d295b629a1d16dc4cee60722e66'/>
<id>b3e46461ce564d295b629a1d16dc4cee60722e66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Hoist common conversion from UTF-8 byte string into CharacterExtracted</title>
<updated>2022-11-12T09:37:31+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-11-12T09:37:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=386b3dc9ddb38992ebc1c05b034b3dd2d8dcc2d9'/>
<id>386b3dc9ddb38992ebc1c05b034b3dd2d8dcc2d9</id>
<content type='text'>
constructor.
Move CharacterExtracted out of Document so it can be more widely used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
constructor.
Move CharacterExtracted out of Document so it can be more widely used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1461] Update to Unicode 14.</title>
<updated>2022-10-25T21:06:17+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2022-10-25T21:06:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=971d2750e3edecb23bbfed9781e0ae66c110b9d5'/>
<id>971d2750e3edecb23bbfed9781e0ae66c110b9d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
