aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2014-06-01Change log.Neil1-0/+11
2014-06-01Bug [#1604]. Fix drawing of indicators when fold highlighting is on by moreNeil1-21/+29
accurately determining whether the area being drawn covers the entire window when the area is a complex shape.
2014-05-31Use standard macro of C++ compiler CXX. Remove definitions that are not needed.Neil1-10/+8
2014-05-31Remove definitions that are provided by make.Neil1-4/+0
2014-05-31Compatibility with makefile conventions: use CXX for C++ compiler and CC forNeil2-16/+15
C compiler. Allow overriding file deletion command on command line so that 'rm' can be used when cross-compiling from Unix to Windows.
2014-05-31Safer handling of "#define X" which caused fault in debug build with Visual C++.Neil1-1/+1
2014-05-31Don't repeat file names that are used for both Scintilla.DLL and SciLexer.DLL.Neil1-31/+9
2014-05-31Merge with 343-Win32-Fix.Neil11-45/+66
2014-05-31Merge 343-Win32-Fix which fixes hangs and crashes at shutdown on Windows.Neil53-385/+400
2014-05-26Added tag rel-3-4-3 for changeset a3c10db89cc3Neil1-0/+1
2014-05-26Updates for 3.4.3 release.Neil7-13/+25
2014-05-26Bug [#1602]. Bug [#1603]. Fix hangs and crashes at shutdown.Neil3-30/+38
2014-05-26Created 343-Win32-Fix branch to fix hangs and crashes on Windows.Neil0-0/+0
2014-05-25Handle cases where multiple selection autocompletion requires removing ↵Neil Hodgson1-1/+2
previous text. From Mitchell Foral.
2014-05-24Header include statements are now in a standardised order with that orderNeil32-72/+210
defined in scripts/HeaderOrder.txt.
2014-05-24SCI_AUTOCSETMULTI allows setting whether autocompletion text is inserted at eachNeil6-4/+59
selection when multiple selections are active. From Mitchell Foral.
2014-05-24Remove suppression that is no longer needed.Neil1-1/+0
2014-05-24Removing style byte indicators.Neil19-250/+99
2014-05-24Removing use of style byte indicator in Scriptol lexer.Neil1-31/+1
2014-05-24Removing use of style byte indicator in PostScript lexer.Neil1-22/+6
2014-05-24Moving declaration inside loop to prevent a 'scope can be reduced' warning.Neil1-2/+1
2014-05-24Fix raw string recognition so that R"xxx(blah)xxx" is styled as SCE_C_STRINGRAW.Neil2-3/+22
2014-05-24Avoid a runtime warning from Dr. Memory.Neil1-0/+1
2014-05-22Added tag rel-3-4-2 for changeset a4286bbf7081Neil1-0/+1
2014-05-22Minor documentation updates for release.Neil2-1/+5
2014-05-21Updated to current version of Catch as fixes issues reported by undefinedNeil1-555/+398
behaviour sanitizer.
2014-05-19Fix missing redraws on GTK < 3.9.2Colomban Wendling1-5/+15
Also, make the recent redraw fixes depend on the GTK version Scintilla is running against, rather than built against. This allows for the same build to work with both GTK < 3.9.2 or >= 3.9.2.
2014-05-20Changed release date.Neil2-3/+3
2014-01-20Fix typo in documentationStefan Weil1-1/+1
2014-01-20Fix typos in comments (src)Stefan Weil3-7/+7
2014-01-20Fix typos in comments (lexers)Stefan Weil5-8/+8
2014-01-20Fix typos in comments (qt)Stefan Weil2-3/+3
2014-05-16Updates for 3.4.2 release.Neil7-18/+20
2014-05-15Don't try to use sanitizers on OS X as not built into Clang.Neil Hodgson1-2/+5
2014-05-15Support Clang on Linux and turn on the address and undefined behaviourNeil1-1/+6
sanitizers.
2014-05-15Update Catch unit testing framework to current build 43 as it avoids someNeil1-1989/+3048
warnings from Clang.
2014-05-14GTK: Avoid flickering when wrapping linesColomban Wendling1-1/+1
2014-05-14Bug [#1567]. Fix display flashing when scrolling with Gtk+ 3.10.Neil2-4/+27
Includes work from Sébastien Granjoux and Colomban Wendling.
2014-05-14Limit iterations when expanding macros in case a macro is recursive such asNeil1-1/+4
#define MAC(x) MAC(x+1) Also fixes macros that are co-recursive with other macros.
2014-05-13Feature [feature-requests:#1051]. Fixed shadowed local variable.Neil1-1/+1
2014-05-12Change log.Neil1-0/+7
2014-05-12Feature [feature-requests:#1051]. Support #if defined SYMBOL.Neil1-94/+252
Previously required braces around like #if defined(SYMBOL). Also understand macros with arguments such as version checking macros like #if GTK_CHECK_VERSION(2,22,0)
2014-05-12Avoid cppcheck warning for LexPerl as not maintained by me.Neil1-0/+1
2014-05-12Split variable into two as used for different reasons. Use unsigned to avoidNeil1-5/+4
possibility of sign extension problems and to minimize type conversions.
2014-05-10Bug [#685]. WM_GETTEXT now provides data in UTF-16 for Unicode window.Neil2-2/+76
2014-05-10Change log.Neil1-0/+5
2014-05-02Add missing not sign to fix DMIS label highlightingAndreas Tscharner1-1/+1
2014-05-02DMIS Minor words can also start with the digits 2, 3 or 4Andreas Tscharner1-1/+1
2014-05-03Replacing the int-based constructors for Point and PRectangle with FromIntsNeil8-98/+99
static methods as there were too many failures with mixed types and not-quite matching types.
2014-05-03Fix Point and PRectangle constructors to match changes in Platform.h.Neil Hodgson2-13/+14