| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-01-23 | Backport: Suppress 'noValidConfiguration' problems with Qt moc_* files. | Neil | 1 | -5/+3 | |
| Remove suppressions that are no longer needed with cppcheck 1.86 for lexers. Backport of changeset 7236:f7c14d3fec75. | |||||
| 2019-01-23 | Backport: Feature [feature-requests:#1258]. Add function IsFuncName() to Nim ↵ | Jad Altahan | 1 | -11/+21 | |
| lexer. Backport of changeset 7235:6e959f8ec7d9. | |||||
| 2019-01-15 | Backport: Fix use of "0" for nulls and mark methods "noexcept" where simple. | Neil | 2 | -20/+20 | |
| Backport of changeset 7234:f4ff793e7ddd. | |||||
| 2019-01-15 | Backport: Treat "#if(" as preprocessor directive "#if" followed by operator "(". | Neil | 2 | -1/+6 | |
| Backport of changeset 7233:e08fe2381ca3. | |||||
| 2019-01-15 | Backport: Noted that 3.7.5 is the final SciTE 3.x. | Neil | 1 | -0/+3 | |
| Backport of changeset 7232:5ab0fd6f17ca. | |||||
| 2019-01-15 | Backport: Fix link. | Neil | 0 | -0/+0 | |
| Backport of changeset 7231:637dc410c0f3. | |||||
| 2019-01-13 | Backport: Feature [feature-requests:#1254]. Fix bug causing fold line ↵ | Jad Altahan | 2 | -5/+10 | |
| creation in comments Backport of changeset 7230:8bfffdf3bbc0. | |||||
| 2019-01-13 | Backport: Feature [feature-requests:#1253]. Critical fixes for raw strings | Jad Altahan | 2 | -7/+68 | |
| Backport of changeset 7229:cacdbd636504. | |||||
| 2019-01-13 | Backport: Replace the only use of a function from <cctype> with a Scintilla ↵ | Neil | 9 | -10/+3 | |
| function. Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments. Backport of changeset 7228:348e55f8107c. | |||||
| 2019-02-16 | Updated copyright year. | mitchell | 135 | -135/+135 | |
| 2019-01-31 | Updated dmd lexer. | mitchell | 1 | -4/+3 | |
| Thanks to Jonathon Levi. | |||||
| 2019-01-31 | Do not match '..' on the trailing end of floats. | mitchell | 1 | -1/+2 | |
| 2019-01-12 | Added tag rel-3-10-2 for changeset 8b888bf05fe3 | mitchell | 1 | -0/+1 | |
| 2019-01-12 | Updates for version 3.10.2.rel-3-10-2 | mitchell | 1 | -5/+5 | |
| 2019-01-12 | Updates for version 3.10.2. | mitchell | 8 | -15/+15 | |
| 2019-01-12 | Updated BACKPORTING. | mitchell | 1 | -0/+16 | |
| 2019-01-07 | Backport: Stop variable shadowing. This makes the code easier to understand ↵ | Neil | 1 | -1/+1 | |
| and improves performance very slightly. Backport of changeset 7196:094210c79fd4. | |||||
| 2019-01-06 | Backport: Bug [#2068]. Fix some clang-tidy warnings. | Zufu Liu | 11 | -16/+16 | |
| Backport of changeset 7195:ce4394f12c76. | |||||
| 2019-01-06 | Backport: Feature [feature-requests:#1251]. Properly ignore backslash in raw ↵ | Jad Altahan | 1 | -2/+7 | |
| strings. Backport of changeset 7193:c7115cdddcfe. | |||||
| 2019-01-05 | Backport: Modernize errorlist lexer a little - unnamed namespace, reducing ↵ | Neil | 1 | -20/+19 | |
| variable scope, nullptr, constexpr, noexcept. Backport of changeset 7192:eed22a260842. | |||||
| 2019-01-05 | Backport: Recognize negative line numbers in GCC-format messages. | Neil | 2 | -1/+6 | |
| Cppcheck shows some whole-file errors as line -1. Backport of changeset 7191:c9ef21df2e3c. | |||||
| 2019-01-03 | Backport: Update suppressions for Cppcheck 1.86. | Neil | 1 | -0/+7 | |
| Backport of changeset 7190:24b78f37c441. | |||||
| 2019-01-03 | Backport: Avoid shadowing of AutoSurface. | Neil | 1 | -3/+3 | |
| Backport of changeset 7189:8eff2f26b0ee. | |||||
| 2019-01-03 | Backport: Bug [#2073]. Stop GetCharacterAndWidth returning negative ↵ | Zufu Liu | 1 | -2/+2 | |
| character value. This occurred for single-byte encodings and was never hit as GetCharacterAndWidth is only called for multi-byte encodings. Backport of changeset 7188:c836128fa848. | |||||
| 2018-12-12 | Backport: Feature [feature-requests:#1247]. Handles message groups as well ↵ | Iain Clarke | 2 | -31/+83 | |
| as messages. Backport of changeset 7186:8849447859eb. | |||||
| 2018-12-12 | Backport: Bug [#2069]. LexerCPP: modernize int to std::string conversion | Jannick | 1 | -3/+1 | |
| * LexCPP.cxx (LexerCPP::EvaluateTokens): Use std::to_string to convert int to std::string. Backport of changeset 7185:bff457790150. | |||||
| 2018-12-12 | Backport: Bug [#2069]. LexCPP: fix bug in arithmetic calculation by adding ↵ | Jannick | 2 | -5/+14 | |
| precedence levels 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. | |||||
| 2018-12-07 | Backport: Feature [feature-requests:#1246]. Replace MAKELONG with ↵ | Zufu Liu | 1 | -3/+3 | |
| MAKELRESULT and MAKEWPARAM which are more specific. Backport of changeset 7183:3ca4517dc18f. | |||||
| 2018-12-04 | Backport: Bug [#2062]. Interpret continued preprocessor lines correctly by ↵ | Neil | 2 | -10/+25 | |
| reading all of the logical line. Backport of changeset 7182:a40b6aac5b1f. | |||||
| 2018-11-29 | Backport: Notify with SC_UPDATE_SELECTION when user performs a multiple ↵ | Neil | 2 | -0/+4 | |
| selection add. Backport of changeset 7181:77e17d7f972b. | |||||
| 2018-11-28 | Backport: Move functions to unnamed namespace | Jad Altahan | 1 | -101/+106 | |
| Backport of changeset 7180:473d0b0941fb. | |||||
| 2018-11-28 | Backport: Removed description of fold.comment as it is shared with other ↵ | Neil | 1 | -2/+1 | |
| lexers and the desription from LexCPP.cxx takes precedence. Backport of changeset 7179:16fd3ed0b26d. | |||||
| 2018-11-28 | Backport: Bug [#2054]. Reimplemented as an object lexer to support substyles ↵ | Kacper Kasper | 2 | -44/+225 | |
| for multiple sets of keywords and SCI_PROPERTYNAMES. Backport of changeset 7178:a581d5f71f49. | |||||
| 2019-01-12 | Fixed LexNim backport error. | mitchell | 1 | -2/+2 | |
| 2018-11-21 | Backport: Changes to IsNumOctal & SCE_NIM_IDENTIFIER | Jad Altahan | 1 | -5/+5 | |
| - Removed 0c/0C prefix in IsNumOctal(). Not supported. - Added upper-case type suffixes in SCE_NIM_NUMBER. They are case-insensitive. Backport of changeset 7174:caa5c5b342a1. | |||||
| 2018-11-21 | Backport: Feature [feature-requests:#1242]. Add lexer for Nim | Jad Altahan | 7 | -1/+756 | |
| Backport of changeset 7173:3e6cf75864cc. | |||||
| 2018-11-20 | Bug [#2061]. Fix a crash that occurred when entering a dead key diacritic then a | Neil Hodgson | 2 | -1/+25 | |
| 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. | |||||
| 2018-11-18 | Backport: Bug [#2059]. Update URL in comment. | Neil | 1 | -1/+1 | |
| Backport of changeset 7170:6a7abb3a43c7. | |||||
| 2018-11-25 | lexlua: Updated ConTeXt Lua lexer with proper diff. | mitchell | 1 | -10/+14 | |
| 2018-11-25 | lexlua: Updated ConTeXt lexer. | mitchell | 1 | -15/+19 | |
| Thanks to Lars Otter. | |||||
| 2018-10-31 | Added tag rel-3-10-1 for changeset 28b920189a7c | mitchell | 1 | -0/+1 | |
| 2018-10-31 | Updated for 3.10.1.rel-3-10-1 | mitchell | 9 | -15/+97 | |
| 2018-10-26 | lexlua: Fixed HTML unit test with lexer update. | mitchell | 1 | -5/+3 | |
| 2018-10-26 | Updated BACKPORTING. | mitchell | 1 | -6/+47 | |
| 2018-10-18 | Backport: Updated case conversion and character categories to Unicode 11. | Neil | 3 | -62/+187 | |
| Fixed history by moving new items into the pending version. Backport of changeset 7120:3d7ba41494e8. | |||||
| 2018-10-17 | Backport: Use nullptr, default brace and member initialisation for some ↵ | Neil | 2 | -52/+42 | |
| simple cases. Backport of changeset 7119:32e2131e1f04. | |||||
| 2018-10-17 | Backport: Use nullptr and default brace initialisation for some simple cases. | Neil | 3 | -4/+6 | |
| Backport of changeset 7118:526318f7d6c7. | |||||
| 2018-10-17 | Backport: Bug [#2051]. Correct return value from SCI_MARKERADD for invalid ↵ | Neil | 2 | -5/+9 | |
| lines. Backport of changeset 7117:0cbbfacbf008. | |||||
| 2018-10-16 | Backport: Suppress warnings from cppcheck 1.85. | Neil | 1 | -0/+10 | |
| The useStlAlgorithm suggestions may be worth investigation but they are not obvious so should not be in the default messages for now. Backport of changeset 7116:a0b495cddb79. | |||||
| 2018-10-16 | Backport: Make damping work in ActionDuration. | Colomban Wendling | 1 | -1/+1 | |
| Backport of changeset 7115:f6d66247a18e. | |||||
