<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/doc/ScintillaHistory.html, branch rel-3-10-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>Updates for version 3.10.2.</title>
<updated>2019-01-12T14:18:37+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2019-01-12T14:18:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ab1d5c9e571aae0f0b525355aa7a36e5ac750282'/>
<id>ab1d5c9e571aae0f0b525355aa7a36e5ac750282</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Recognize negative line numbers in GCC-format messages.</title>
<updated>2019-01-04T21:52:28+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2019-01-04T21:52:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9dceeabe43a5997a2b84438fed499a3a8f5c6995'/>
<id>9dceeabe43a5997a2b84438fed499a3a8f5c6995</id>
<content type='text'>
Cppcheck shows some whole-file errors as line -1.

Backport of changeset 7191:c9ef21df2e3c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cppcheck shows some whole-file errors as line -1.

Backport of changeset 7191:c9ef21df2e3c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Feature [feature-requests:#1247]. Handles message groups as well as messages.</title>
<updated>2018-12-11T22:26:18+00:00</updated>
<author>
<name>Iain Clarke</name>
<email>unknown</email>
</author>
<published>2018-12-11T22:26:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=a402d41e20e8fa48ee20bc4a4b5f866ace0c5d32'/>
<id>a402d41e20e8fa48ee20bc4a4b5f866ace0c5d32</id>
<content type='text'>
Backport of changeset 7186:8849447859eb.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of changeset 7186:8849447859eb.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Bug [#2069]. LexCPP: fix bug in arithmetic calculation by adding precedence levels</title>
<updated>2018-12-11T21:38:19+00:00</updated>
<author>
<name>Jannick</name>
<email>unknown</email>
</author>
<published>2018-12-11T21:38:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cb6e496d5fef85a7305db64e0874fdb0b78fd04b'/>
<id>cb6e496d5fef85a7305db64e0874fdb0b78fd04b</id>
<content type='text'>
The precedence for the implemented arithmetic operators +,-,%,*,/
is added, such that the calculations produce the correct results
honoring the standard precedence levels.

* Replace characterset setArithmeticOp by setAddOp and setMultOp.
* Replace precedence precArithmetic by precMult and precAdd
* (EvaluateTokens): Apply new precedences.

This fixes the bug in the arithmetic calculation:

// lines with 'false' should not be highlighted,
// those with 'true' should be.

#if 1 + 2 * 3 == 9
false
#endif

#if (1 + 2) * 3 == 9
true
#endif

#if 1 + 2 * 3 == 7
true
#endif

#if 1 == 5 % 2
true
#endif

#if 6 - 7 == -1
true
#endif

#if 25 / 5 * 5 == 25
true
#endif

#if 1 + 2 * 3 % 2 == 1
true
#endif

#if 1 + 2 * 3 % 2 == 2 + 1
false
#endif

Backport of changeset 7184:48861f53f719.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The precedence for the implemented arithmetic operators +,-,%,*,/
is added, such that the calculations produce the correct results
honoring the standard precedence levels.

* Replace characterset setArithmeticOp by setAddOp and setMultOp.
* Replace precedence precArithmetic by precMult and precAdd
* (EvaluateTokens): Apply new precedences.

This fixes the bug in the arithmetic calculation:

// lines with 'false' should not be highlighted,
// those with 'true' should be.

#if 1 + 2 * 3 == 9
false
#endif

#if (1 + 2) * 3 == 9
true
#endif

#if 1 + 2 * 3 == 7
true
#endif

#if 1 == 5 % 2
true
#endif

#if 6 - 7 == -1
true
#endif

#if 25 / 5 * 5 == 25
true
#endif

#if 1 + 2 * 3 % 2 == 1
true
#endif

#if 1 + 2 * 3 % 2 == 2 + 1
false
#endif

Backport of changeset 7184:48861f53f719.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Bug [#2062]. Interpret continued preprocessor lines correctly by reading all of</title>
<updated>2018-12-03T21:29:58+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2018-12-03T21:29:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ffc99771b95a0b01371779d9d30f9d0400054691'/>
<id>ffc99771b95a0b01371779d9d30f9d0400054691</id>
<content type='text'>
the logical line.

Backport of changeset 7182:a40b6aac5b1f.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the logical line.

Backport of changeset 7182:a40b6aac5b1f.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Notify with SC_UPDATE_SELECTION when user performs a multiple selection add.</title>
<updated>2018-11-28T20:50:35+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2018-11-28T20:50:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=1887ae76f92913b12e2b94f0b047e3b63d491656'/>
<id>1887ae76f92913b12e2b94f0b047e3b63d491656</id>
<content type='text'>
Backport of changeset 7181:77e17d7f972b.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of changeset 7181:77e17d7f972b.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Bug [#2054]. Reimplemented as an object lexer to support substyles for multiple</title>
<updated>2018-11-27T21:42:37+00:00</updated>
<author>
<name>Kacper Kasper</name>
<email>unknown</email>
</author>
<published>2018-11-27T21:42:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=acdba91e287fde784d5c519f8559bfe8f89db13c'/>
<id>acdba91e287fde784d5c519f8559bfe8f89db13c</id>
<content type='text'>
sets of keywords and SCI_PROPERTYNAMES.

Backport of changeset 7178:a581d5f71f49.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sets of keywords and SCI_PROPERTYNAMES.

Backport of changeset 7178:a581d5f71f49.
</pre>
</div>
</content>
</entry>
<entry>
<title>Backport: Feature [feature-requests:#1242]. Add lexer for Nim</title>
<updated>2018-11-21T08:39:33+00:00</updated>
<author>
<name>Jad Altahan</name>
<email>xviyy@aol.com</email>
</author>
<published>2018-11-21T08:39:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=a48306f317a02679b1b17f846733bc5148dc7a82'/>
<id>a48306f317a02679b1b17f846733bc5148dc7a82</id>
<content type='text'>
Backport of changeset 7173:3e6cf75864cc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of changeset 7173:3e6cf75864cc.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then a</title>
<updated>2018-11-20T01:14:54+00:00</updated>
<author>
<name>Neil Hodgson</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2018-11-20T01:14:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=f6b876ef1f4c1621dc4822ace7673e45dd30ea0b'/>
<id>f6b876ef1f4c1621dc4822ace7673e45dd30ea0b</id>
<content type='text'>
character that can not take that diacritic, such as option+e (acute accent)
followed by g.

Backport of changeset 7171:d07ee885f2dd, but translated to C++11.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
character that can not take that diacritic, such as option+e (acute accent)
followed by g.

Backport of changeset 7171:d07ee885f2dd, but translated to C++11.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updated for 3.10.1.</title>
<updated>2018-10-31T21:29:15+00:00</updated>
<author>
<name>mitchell</name>
<email>unknown</email>
</author>
<published>2018-10-31T21:29:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=da35ef98c511fa74a8e58f53b7c611ebe0e0ea8d'/>
<id>da35ef98c511fa74a8e58f53b7c611ebe0e0ea8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
