<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/doc, branch rel-4-1-3</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 4.1.3.</title>
<updated>2019-01-07T08:34:32+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2019-01-07T08:34:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=4af487f4aae6fdaed2f4201dabfe9637fdf6eadc'/>
<id>4af487f4aae6fdaed2f4201dabfe9637fdf6eadc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug [#2022]. Fix incorrect horizontal offset on macOS 10.14 Mojave.</title>
<updated>2019-01-05T22:52:38+00:00</updated>
<author>
<name>Chinh Nguyen</name>
<email>unknown</email>
</author>
<published>2019-01-05T22:52:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=2e794b1ef52cb04e93f65906a266095bc8eae4f6'/>
<id>2e794b1ef52cb04e93f65906a266095bc8eae4f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>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=103d6796be9173e35c9ace763a2e3ad01f051d90'/>
<id>103d6796be9173e35c9ace763a2e3ad01f051d90</id>
<content type='text'>
Cppcheck shows some whole-file errors as line -1.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cppcheck shows some whole-file errors as line -1.
</pre>
</div>
</content>
</entry>
<entry>
<title>Stop specifying -std:c++latest as that is no longer needed to enable C++17 with</title>
<updated>2018-12-13T20:46:31+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2018-12-13T20:46:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=6f94ed773596f4675685ee0cad7ddeaee9d53767'/>
<id>6f94ed773596f4675685ee0cad7ddeaee9d53767</id>
<content type='text'>
MSVC 2017 and Qt 5.12 and it caused duplicate flag warnings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MSVC 2017 and Qt 5.12 and it caused duplicate flag warnings.
</pre>
</div>
</content>
</entry>
<entry>
<title>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=ba44752c09788655780cf71960093128c17d956f'/>
<id>ba44752c09788655780cf71960093128c17d956f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>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=3f3eb0ea971edddb3983bb6498decbb171b17e0f'/>
<id>3f3eb0ea971edddb3983bb6498decbb171b17e0f</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
</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
</pre>
</div>
</content>
</entry>
<entry>
<title>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=02b035fec78afcb1bd3d76cdcde876fdf322c655'/>
<id>02b035fec78afcb1bd3d76cdcde876fdf322c655</id>
<content type='text'>
the logical line.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the logical line.
</pre>
</div>
</content>
</entry>
<entry>
<title>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=f18c7c8cdcbd00681dee4d8110c2b767f1d7f5f8'/>
<id>f18c7c8cdcbd00681dee4d8110c2b767f1d7f5f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>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=5328f6bfc7f0cd978bd3070bb0685249d5b5fc12'/>
<id>5328f6bfc7f0cd978bd3070bb0685249d5b5fc12</id>
<content type='text'>
sets of keywords and SCI_PROPERTYNAMES.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sets of keywords and SCI_PROPERTYNAMES.
</pre>
</div>
</content>
</entry>
<entry>
<title>SciTE change log.</title>
<updated>2018-11-27T05:10:53+00:00</updated>
<author>
<name>Neil</name>
<email>nyamatongwe@gmail.com</email>
</author>
<published>2018-11-27T05:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9ccf430a6626ea19db72ecd22d866f71c6df0aa8'/>
<id>9ccf430a6626ea19db72ecd22d866f71c6df0aa8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
