aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2018-03-24Backport: Removed unreachable branches in UTF8Classify.Neil1-8/+0
Backport of changeset 6647:f81b6f34bf07.
2018-03-24Backport: Removed unwanted include.Neil4-5/+3
Backport of changeset 6646:c64207e7e584.
2018-05-05Backport: Feature [feature-requests:#1212]. Move Unicode conversions into ↵mitchell16-237/+226
UniConversion. Move Unicode conversion functions UnicodeFromUTF8 and UTF8FromUTF32Character into UniConversion. Backport of changeset 6645:463fa6965d9a.
2018-05-05Backport: Feature [feature-requests:#1211]. Use pre-computed table for ↵mitchell11-194/+243
UTF8BytesOfLead. Friendlier treatment of invalid UTF-8. Add tests for UniConversion handling invalid UTF-8. Simplify UTF8Classify tests. Backport of changeset 6643:ebbb4e5aaf93.
2018-05-05Use correct domain for scintilla380 release zip.mitchell1-1/+1
2018-04-29Fixed potential crashes in curses platform with newer versions of ncurses.mitchell1-4/+4
2018-04-07lexlua: Added 'var' keyword for C#.mitchell1-1/+1
2018-03-28Added tag rel-3-8-0 for changeset 7c78091d5d6cmitchell1-0/+1
2018-03-26Removed unwanted files in lexlua/.rel-3-8-0mitchell4-2149/+0
2018-03-25Added BACKPORTING notice.mitchell1-0/+162
2018-03-25Fixed LPeg lexer incorrectly applying style changes to stale property sets.mitchell1-6/+11
Also, when manually updating the default style, call SCI_STYLECLEARALL in order for subsequent style updates to inherit from the default style.
2018-03-22Update changelog with LPeg lexers and curses additions.mitchell1-0/+6
2018-03-22Updating for 3.8.0.mitchell8-14/+14
2018-03-21Backport: Fix some runtime warnings caused by previous change as wSelectionNeil Hodgson1-4/+4
created later and clients (such as SciTE's about box) may use API to set up text before window is realized. Backport of changeset 6637:f5bc6b39f3fa.
2018-03-21Backport: Fix warnings about NULL selection widget by moving creation and ↵Mitchell Foral1-4/+2
destruction of wSelection into the realize and unrealize handlers. Backport of changeset 6636:faac617dc312.
2018-03-21Backport: Include header needed for ptrdiff_t.Mitchell Foral7-0/+7
Backport of changeset 6635:f59121877e75.
2018-03-20Backport: Add unit tests for UniCoversion.Neil5-3/+270
Backport of changeset 6631:dab8d8906cfb.
2018-03-19Backport: Fix warning from MSVC 64-bit.Neil1-2/+2
Backport of changeset 6630:9a68a8f20de9.
2018-03-16Backport: Remove line-end white space.Neil28-83/+83
Backport of changeset 6625:2dd6b8049c4e.
2018-03-16Remove unused inclusion of "XPM.h" in curses.mitchell1-1/+0
2018-03-15Backport: Use forward class definitions of XPM and RGBAImage so only code ↵Neil14-47/+46
that uses them needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage. Backport of changeset 6624:32adac0930bb.
2018-03-14Backport: Bug [#2001]. Make masking and comparison code clearer.Neil1-16/+25
Backport of changeset 6623:85eff0bae17a.
2018-03-16Fixed compiler warnings in LPeg lexer.mitchell1-8/+7
2018-03-09Backport: Use Position/Line/int more accurately in preparation for large ↵Neil17-131/+136
documents. Backport of changeset 6480:f2650eaa75e6.
2018-03-08Backport: Fix relexing from inside multiline comments.Gunter Königsmann1-9/+17
Fix some warnings. Backport of changeset 6479:065b6d800991.
2018-03-08Backport: Change log.Neil1-0/+3
Backport of changeset 6478:e7f3cfe25244.
2018-03-08Backport: Create static library libscintilla.a or libscintilla.lib on Windows.Neil4-38/+53
Stop creating Lexers.a static library. Harmonize make files. Backport of changeset 6477:a65186aab9f9.
2018-03-08Backport: Bug [#1952]. Match identifier chains with dots and colons.Kein-Hong Man2-56/+98
Backport of changeset 6475:8fb85a29591f.
2018-03-06Backport: Feature [feature-requests:#1210]. Maxima lexer added.Gunter Königsmann9-0/+257
Backport of changeset 6474:7a2aeece58b6.
2018-03-05Backport: Bug [#1999]. Fix hang lexing a Lua label where the range ends ↵Neil2-0/+9
before "::". Backport of changeset 6473:daf991b38f03.
2018-03-03Backport: Promote methods from int to ptrdiff_t to allow extension to 64-bits.Neil2-8/+8
Backport of changeset 6472:aa859585e0c2.
2018-03-03Backport: Use Position and Line types in ScintillaCocoa to allow for later ↵Neil1-7/+7
changes. Backport of changeset 6471:3546815875df.
2018-03-01Backport: Mark variables as const where simple.Neil17-294/+294
Backport of changeset 6470:d78a4b522662.
2018-03-01Backport: Use C++ cast in preference to C cast.Neil1-1/+1
Backport of changeset 6469:67f7890eac1d.
2018-03-01Backport: Mark pointer argument as const as not written to.Neil2-7/+7
Backport of changeset 6468:9ed7929c7900.
2018-03-01Backport: Avoid warning with explicit destructor.Neil1-0/+1
Backport of changeset 6467:17f14e179303.
2018-02-27Backport: Use 'const'.Neil1-1/+1
Backport of changeset 6463:6d6db2016d7c.
2018-02-27Backport: Use virtual to ensure LexState overrides LineEndTypesSupported method.Neil2-2/+2
Backport of changeset 6462:934f6f6451c2.
2018-02-27Backport: Added <utility> and <tuple> to header order and moved POSIX header ↵Neil3-5/+9
<sys/time.h> after standard C++ language headers. Backport of changeset 6461:abc640b89c43.
2018-02-24Backport: Fix move-extends-selection mode for rectangular and line selections.Mitchell Foral4-17/+138
Backport of changeset 6458:0a8a766722c0.
2018-02-22Backport: Bug [#1993]. Fix building on Mingw/MSYS to perform file copies and ↵Tobias Kühne2-1/+5
deletions. Backport of changeset 6457:26e7749ba67a.
2018-02-17Backport: For rectangular selections, pressing Home or End now moves the ↵Vicente2-3/+18
caret to the Home or End position instead of the limit of the rectangular selection. Backport of changeset 6456:eaa6c7fa1a81.
2018-02-10Backport: Eliminate calls of Scintilla APIs that have been removed.Neil Hodgson1-3/+0
Backport of changeset 6451:d5eb40fd400d.
2018-02-06Backport: [Bug #1983] Fix double tap word selection on Windows 10 1709 Fall ↵Dimitar Radev2-1/+6
Creators Update. Times of observed mouse events went backwards causing unsigned overflow. Backport of changeset 6449:1280ef150bbb.
2018-02-02Backport: Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil12-21/+75
Backport of changeset 6448:431b814a54a6.
2018-02-01Backport: Templatize RunStyles so it can be over ranges of different types ↵Neil6-75/+100
and contain different style types. Currently only instantiated over <int, int>. Backport of changeset 6445:89d992f380a1.
2018-02-01Backport: Templatize Partitioning so it can hold different types.Neil8-37/+39
Backport of changeset 6444:1bd57324aa36.
2018-01-31Backport: Document bytes argument to SCI_CREATEDOCUMENT.Neil1-0/+3
Backport of changeset 6443:ab4efcbfdae6.
2018-01-26Backport: Extend SplitVector to allow more than 2 billion elements on 64-bit ↵Neil4-52/+52
systems. Backport of changeset 6442:3e3bfe29a819.
2018-01-26Backport: Add documentOption argument to SCI_CREATELOADER.Neil4-11/+27
Backport of changeset 6441:92c8f0f1b3e6.