<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/include, branch rel-3-5-0</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>Added lexer for registry files.</title>
<updated>2014-08-09T04:46:35+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-08-09T04:46:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=4f382b2e4a37af5f9d04242cbcc08001533c9157'/>
<id>4f382b2e4a37af5f9d04242cbcc08001533c9157</id>
<content type='text'>
From nkmathew.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From nkmathew.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement explicit tab stops per line.</title>
<updated>2014-08-08T00:01:55+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-08-08T00:01:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=c5905297575b23f9454cb0dfe574140c2a329c95'/>
<id>c5905297575b23f9454cb0dfe574140c2a329c95</id>
<content type='text'>
From Nick Gravgaard.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From Nick Gravgaard.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rust: Highlight byte-string literals.</title>
<updated>2014-07-29T18:45:14+00:00</updated>
<author>
<name>SiegeLord</name>
<email>slabode@aim.com</email>
</author>
<published>2014-07-29T18:45:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=5bc323d082e8c7984cab85da59f2ee6d162cbb4f'/>
<id>5bc323d082e8c7984cab85da59f2ee6d162cbb4f</id>
<content type='text'>
This adds support for two new string literals and one new string literal,
corresponding to the existing versions of these. Compared to the originals, the
new literals have slightly different escapes and are ASCII only. I've decided
to simply add flags to the existing scanners to handle them. New styles had to
be added to handle the line spanning string literals. The byte character style
was added for consistency.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds support for two new string literals and one new string literal,
corresponding to the existing versions of these. Compared to the originals, the
new literals have slightly different escapes and are ASCII only. I've decided
to simply add flags to the existing scanners to handle them. New styles had to
be added to handle the line spanning string literals. The byte character style
was added for consistency.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow extreme ascenders and descenders to overlap into adjacent lines with</title>
<updated>2014-07-18T02:01:14+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-07-18T02:01:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=82f6152e6f7eae1419537055d31c9a865905ba5a'/>
<id>82f6152e6f7eae1419537055d31c9a865905ba5a</id>
<content type='text'>
multiple phase drawing option.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
multiple phase drawing option.
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature [feature-requests:#1053]. Add a block comment state.</title>
<updated>2014-07-08T00:53:03+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-07-08T00:53:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=f2749ccb2d9dbf953733900f02aa0baa6e695cd7'/>
<id>f2749ccb2d9dbf953733900f02aa0baa6e695cd7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide complete C prototypes for C-exported functions</title>
<updated>2014-07-04T01:21:16+00:00</updated>
<author>
<name>Colomban Wendling</name>
<email>ban@herbesfolles.org</email>
</author>
<published>2014-07-04T01:21:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=6a37b9b32b204a6cfdf2642312c5d416086b10bd'/>
<id>6a37b9b32b204a6cfdf2642312c5d416086b10bd</id>
<content type='text'>
A C function declaration with an empty parameter list does not declare
a function taking no parameters, but simply does not declares what
parameters it takes (hence, it's not a complete prototype).  To denote
an empty parameter list, C uses the special `void` value.

This avoids warnings when building C sources including Scintilla.h if
using e.g. GCC's `-Wstrict-prototypes` option, as well as actually
disallowing passing parameters to those functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A C function declaration with an empty parameter list does not declare
a function taking no parameters, but simply does not declares what
parameters it takes (hence, it's not a complete prototype).  To denote
an empty parameter list, C uses the special `void` value.

This avoids warnings when building C sources including Scintilla.h if
using e.g. GCC's `-Wstrict-prototypes` option, as well as actually
disallowing passing parameters to those functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>Only define namespaces when compiling as C++.</title>
<updated>2014-06-17T06:13:41+00:00</updated>
<author>
<name>Neil Hodgson</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-06-17T06:13:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ad30dda365f6bea6c06c5a6dc12bf3b4d0793f8e'/>
<id>ad30dda365f6bea6c06c5a6dc12bf3b4d0793f8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SCI_AUTOCSETMULTI allows setting whether autocompletion text is inserted at each</title>
<updated>2014-05-24T00:20:06+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-05-24T00:20:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=c4fb5a967fa550def8a75f12f6216b56aa68a179'/>
<id>c4fb5a967fa550def8a75f12f6216b56aa68a179</id>
<content type='text'>
selection when multiple selections are active.
From Mitchell Foral.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
selection when multiple selections are active.
From Mitchell Foral.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replacing the int-based constructors for Point and PRectangle with FromInts</title>
<updated>2014-05-03T10:21:13+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-05-03T10:21:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ce6e4b52401b29e0f34888250b8c8cbb5821bc4d'/>
<id>ce6e4b52401b29e0f34888250b8c8cbb5821bc4d</id>
<content type='text'>
static methods as there were too many failures with mixed types and not-quite
matching types.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
static methods as there were too many failures with mixed types and not-quite
matching types.
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn on MSVC 'possible loss of data' warnings and add explicit casts.</title>
<updated>2014-05-03T08:01:22+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2014-05-03T08:01:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=c3e5215e06bd8ff394a9911b5573969cc55681a0'/>
<id>c3e5215e06bd8ff394a9911b5573969cc55681a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
