Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-04-20 | Backport: Suppress some warnings in lexers. | Neil | 1 | -0/+3 | |
Backport of changeset 6710:4e8610c539d0. | |||||
2018-04-20 | Backport: Avoid casts for DrawIndentGuide. | Neil | 2 | -7/+7 | |
Backport of changeset 6709:0e77bb893e18. | |||||
2018-04-20 | Backport: Remove casts, drop default argument, use const. | Neil | 3 | -11/+11 | |
Backport of changeset 6708:6705d3f828c5. | |||||
2018-04-19 | Backport: Templatize MakeUpperCase/MakeLowerCase so they work on char/int ↵ | Neil | 4 | -14/+16 | |
without casts. Backport of changeset 6707:29e80e764b46. | |||||
2018-04-19 | Backport: Use ColourDesired constructor explicitly to make more obvious. | Neil | 4 | -9/+9 | |
Constructor not marked explicit as may be used in external platform layers. Backport of changeset 6706:73c8bc321f62. | |||||
2018-04-19 | Backport: Casting changed in many places, due to change to 64-bit variables ↵ | Neil | 10 | -516/+519 | |
for 64-bit builds. Some of the changes ensure no truncation while others remove casts that are no longer needed because the externally visible Sci_Position is now identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and Document::SciLineFromPosition) added to avoid casting in client code. Sci::Line is currently identical to Sci::Position but it could be made smaller so lines have Sci::Line types and are cast. Some arguments widened. Backport of changeset 6705:5c0a80740b8c. | |||||
2018-04-19 | Backport: Casts that avoid warnings if Position and Line are different sizes. | Neil | 1 | -2/+2 | |
Backport of changeset 6704:733be9341cf9. | |||||
2018-04-19 | Backport: Remove potential allocation in destructor which could have thrown. | Neil | 1 | -1/+0 | |
Backport of changeset 6703:4089e5fd5385. | |||||
2018-04-19 | Backport: Remove unnecessary extra allocation. | Neil | 1 | -1/+0 | |
Backport of changeset 6702:785f4abd19b6. | |||||
2018-04-19 | Backport: Remove casts by using harmonized types. Drop NUL termination that ↵ | Neil | 1 | -16/+13 | |
is not needed. Backport of changeset 6701:6be1be362cfc. | |||||
2018-04-19 | Backport: SC_PRINT_SCREENCOLOURS doesn't force the background colour of line ↵ | Nicholai Benalal | 5 | -5/+26 | |
numbers white. Backport of changeset 6700:daa126b86c17. | |||||
2018-04-18 | Backport: Avoid an overflow warning seen when compiling for Qt. | Neil Hodgson | 1 | -1/+2 | |
Backport of changeset 6699:eed960ed3828. | |||||
2018-04-18 | Backport: Check for perf_counter before using as not available on Python 2 ↵ | Neil | 1 | -14/+20 | |
used for PySide on Linux. Backport of changeset 6698:2cfeab5fa48f. | |||||
2018-04-18 | Backport: Switch performance tests to more accurate timer. | Neil | 1 | -14/+14 | |
Backport of changeset 6697:30b4da4c9e38. | |||||
2018-05-05 | Backport: Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than ↵ | mitchell | 21 | -43/+117 | |
2 GigaBytes. This option is provisional and experimental. Backport of changesets 6696:9729ff36c5b1 and 6723:cffe824ab55e. Also added '#include <cstddef>' to top of src/RESearch.cxx to fix 32-bit build error. | |||||
2018-04-17 | Backport: Templatize ContractionState so it can later be switched between ↵ | Neil | 1 | -70/+100 | |
32-bits and 64-bits. Backport of changeset 6695:86c008249ce5. | |||||
2018-04-17 | Backport: Templatize LineVector so it can later be switched between 32-bits ↵ | Neil | 1 | -8/+9 | |
and 64-bits. Backport of changeset 6694:6df3a85efb80. | |||||
2018-03-28 | Backport: Templatize decorations to allow 32-bit or 64-bit positions. | Neil | 4 | -60/+87 | |
Backport of changeset 6693:7247d1c9c27f. | |||||
2018-04-16 | Backport: Determine if line start or end pattern before loop. | Neil | 1 | -5/+7 | |
Backport of changeset 6692:1868a36cb306. | |||||
2018-04-16 | Backport: Convert topLine from a screen line to a document line before using ↵ | Neil | 1 | -1/+2 | |
it to find a position. Backport of changeset 6691:372b160180b3. | |||||
2018-04-15 | Backport: Feature [feature-requests:#1215]. Stop warning about virtual call ↵ | Neil | 5 | -19/+45 | |
in destructor. Backport of changeset 6690:2107e0144806. | |||||
2018-04-14 | Backport: Undo some changes that snuck in the last change set. | Neil | 1 | -7/+7 | |
Backport of changeset 6688:281d0952d89b. | |||||
2018-05-05 | Backport: Make some changes recommended by clang-tidy. | mitchell | 17 | -38/+39 | |
Backport of changeset 6687:4cbf987c7590. | |||||
2018-04-14 | Backport: Removed workaround for old releases of MSVC. | Neil | 1 | -5/+0 | |
Backport of changeset 6686:afae71db79d3. | |||||
2018-04-13 | Backport: Don't show command as its noise when used in larger scripts. | Neil | 1 | -1/+1 | |
Backport of changeset 6685:c17cd5ee0907. | |||||
2018-04-13 | Backport: Use 'override' for methods that are overridden. | Neil | 2 | -58/+60 | |
Group some method declarations and definitions for AddRef/Release and PerLine. Backport of changeset 6684:bd4aae09fb4b. | |||||
2018-04-13 | Backport: Fix bug with regular expression searches failing to match at line ↵ | Neil | 2 | -16/+12 | |
start or end. This was a work-around for infinite loops when replacing empty matches and this is now the application's responsibility. Backport of changeset 6683:bcae0331720b. | |||||
2018-03-03 | Backport: Split LineVector into interface and implementation classes to ↵ | Neil | 2 | -87/+87 | |
allow future choice between 32-bit and 64-bit position implementations. Backport of changeset 6682:59913262eb19. | |||||
2018-04-11 | Backport: Remove workaround for problems with noexcept. | Neil | 1 | -10/+2 | |
Backport of changeset 6681:84298b2b66f2. | |||||
2018-04-11 | Backport: Set the last X chosen when SCI_REPLACESEL called to ensure macros ↵ | Neil | 2 | -0/+5 | |
work when text insertion followed by line up or down. Backport of changeset 6679:480de02f71f2. | |||||
2018-04-07 | Backport: Add item and reorder. | Neil | 1 | -3/+6 | |
Backport of changeset 6675:ac57ef9d455e. | |||||
2018-04-05 | Backport: Switching to https. | Neil | 6 | -503/+514 | |
Backport of changeset 6674:f2293f8e3cca. | |||||
2018-04-05 | Backport: Backed out changeset: 7402342dc7a3 Caching client rectangle on ↵ | Neil | 7 | -42/+28 | |
EditView. This change was not compatible with Cocoa as it uses document-based coordinates rather than view-based. Backport of changeset 6673:a22abea8d41e. | |||||
2018-04-04 | Backport: Remove automatic detection of Direct2D support during build. | Neil | 7 | -21/+8 | |
DISABLE_D2D may still be defined to remove Direct2D features. Backport of changeset 6672:9c1997a14d89. | |||||
2018-04-04 | Backport: Remove redundant forward declaration and move forward declarations ↵ | Neil | 1 | -10/+8 | |
to top. Backport of changeset 6671:4b0f850270d8. | |||||
2018-04-04 | Backport: Move DLL entry points DllMain and Scintilla_DirectFunction into ↵ | Neil | 11 | -94/+89 | |
ScintillaDLL.cxx to simplify build process by eliminating the compilation of ScintillaWin.cxx into ScintillaWinS.o|obj. Backport of changeset 6670:cfe90078d684. | |||||
2018-04-04 | Backport: Cache client rectangle on EditView so it can be used easily inside ↵ | Neil | 7 | -28/+42 | |
EditView. Backport of changeset 6669:7402342dc7a3. | |||||
2018-04-04 | Backport: Bug [#2006]. State SCN_UPDATEUI is an indication that change may ↵ | Neil | 1 | -5/+7 | |
have occurred and not that a change definitely occurred. Backport of changeset 6668:3f20bac89b30. | |||||
2018-04-03 | Backport: Moved web page for LongTerm3 to SourceForge so it can be updated ↵ | Neil | 1 | -1/+1 | |
by others. Backport of changeset 6667:d65ed0ee2893. | |||||
2018-03-31 | Backport: Make clang 6.0 build without warnings. Requires clang to be on the ↵ | Neil | 1 | -4/+6 | |
path now. Backport of changeset 6665:b3db8fb581bb. | |||||
2018-03-31 | Backport: Match struct initialization exactly to declaration to avoid ↵ | Neil | 1 | -3/+5 | |
warnings from clang. Backport of changeset 6663:ff933a6a090b. | |||||
2018-03-28 | Backport: Change '.' to '->' as Document::decorations was changed to a ↵ | Neil Hodgson | 1 | -4/+4 | |
pointer by last set. Backport of changeset 6659:bb434e6d3f9b. | |||||
2018-05-05 | Backport: Split decorations into interface and implementation. | mitchell | 8 | -120/+201 | |
Backport of changeset 6658:693e737f3155. | |||||
2018-03-27 | Backport: Return a FillResult struct from RunStyles::FillRange instead of ↵ | Neil | 7 | -58/+72 | |
modifying arguments as that is clumsy when converting types. Backport of changeset 6657:43515e7709c6. | |||||
2018-03-27 | Backport: Use an interface for ContractionState so that there can be different | Neil | 9 | -279/+331 | |
implementations of that interface. Backport of changeset 6656:ffa2a06d3987. | |||||
2018-03-26 | Backport: Suppress new warnings because of Catch 2.0.1. | Neil | 1 | -4/+6 | |
Suppress unused private function warnings in ScintillaWin as they are used. Backport of changeset 6654:dde7d711bde3. | |||||
2018-03-26 | Backport: Update Catch from 1.0 build 47 to 2.0.1 and modify UnitTester.cpp ↵ | Neil | 2 | -6090/+9371 | |
to suit. Use #define for Catch to report memory leaks after main as the previous call to _CrtDumpMemoryLeaks was too early and listed a static allocation as a leak. Backport of changeset 6653:0d68633e33ce. | |||||
2018-03-26 | Backport: Avoid warnings about ignored diagnostic with Clang. | Neil | 1 | -0/+2 | |
Backport of changeset 6652:4d04a4cc73af. | |||||
2018-03-25 | Backport: Removed comment about script that is not included. | Neil | 1 | -1/+0 | |
Backport of changeset 6649:07f35aa742ca. | |||||
2018-03-25 | Backport: Feature [feature-requests:#1213]. Clarify UTF8Classify. | Zufu Liu | 2 | -76/+90 | |
Use UTF8BytesOfLead to determine expected length early in function to quickly detect argument not long enough, invalid single bytes and invalid first trail then branching on length for more detailed checks. Backport of changeset 6648:5f2c128ad6dc. |