aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2001-02-18Changed iMessage parameter of scintilla_send_message from int to unsignednyamatongwe2-2/+2
int to be compatible with other message functions.
2001-02-17Turned off warning 4710 for Microsoft C++ compiler indicating inline methodnyamatongwe1-1/+1
not inlined.
2001-02-17Fixed some warnings from Borland.nyamatongwe2-3/+1
2001-02-17Made warning in ScintillaWidget.h work better with GCC.nyamatongwe2-2/+2
2001-02-17If ScintillaWidget.h included without Scintilla.h already included displaynyamatongwe2-1/+12
a warning message and #include "Scintilla.h".
2001-02-17Changed header order to work on GTK+.nyamatongwe3-6/+3
Scintilla.h must be before ScintillaWidget.h now.
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe8-42/+51
pointers to allow portability to 64 bit platforms.
2001-02-16Added link to lexer documentation.nyamatongwe1-0/+4
2001-02-16Initial version by Edward K. Reamnyamatongwe1-0/+220
2001-02-16Patch from Mark so context menu items take account of whether is writable.nyamatongwe1-5/+6
2001-02-09Now removes lib files from zip.nyamatongwe1-1/+1
2001-02-09New lexclasses for Avenue from Alexey.nyamatongwe2-1/+23
2001-02-09New version from Alexey. Diverged much more from LexCPP code.nyamatongwe1-57/+79
2001-02-08Setting operators in ASP VBScript to correct lexical class.nyamatongwe1-1/+1
2001-02-07GetWild does file extension comparison case insensitively.nyamatongwe1-3/+4
2001-02-06For CanPaste also check Editor::CanPaste to see if OK.nyamatongwe1-0/+2
2001-02-06Made SCI_CANPASTE and EM_CANPASTE work correctly usingnyamatongwe3-12/+18
IsClipboardFormatAvailable on Windows.
2001-02-06Removed macro substitution of case insensitive string comparison functionsnyamatongwe2-35/+53
and declared new functions CompareCaseInsensitive and CompareNCaseInsensitive implemented in Scintilla.
2001-02-05Added explicit initialisation of base class in copy constructor fornyamatongwe1-1/+1
ScintillaGTK to avoid warning from gcc.
2001-02-05Patch from John to make GTK+ version build on Win32.nyamatongwe6-8/+336
Modified by me to avoid pointless warnings and print error message if try to build with Borland C++.
2001-02-03Refactored detection of self reference within variable to separate functionnyamatongwe1-11/+20
and added a comment.
2001-02-03Fixed infinite recursion when a value contains a reference to itself.nyamatongwe1-0/+10
2001-02-02Used GetExpanded rather than Get when filling in variable file selectors sonyamatongwe1-2/+2
they can be made up of other variables.
2001-02-01Added Avenue lexer.nyamatongwe1-0/+4
2001-02-01Building from cxx now sets the directory to ..\win32 first.nyamatongwe1-0/+3
2001-02-01Added lexer for Avenue.nyamatongwe5-78/+89
Trailing spaces removed from a lot of lines.
2001-02-01Lexer for Avenue files by Alexey.nyamatongwe1-0/+166
2001-01-29Removed USE_XIM definition.rel-1-35nyamatongwe1-4/+2
2001-01-29Removed todo item.nyamatongwe1-7/+0
2001-01-29Fixed problem where BeginUndoAction and EndUndoAction were in wrong order.nyamatongwe2-6/+11
Made both the effects of backspace and delete keys be coalesced together into undo actions.
2001-01-29Updated documentation of caret policy and visible policy.nyamatongwe1-4/+9
2001-01-29Fiddled with caret and visible policies.nyamatongwe2-6/+6
2001-01-28Updating documentation to include additions for 1.35.nyamatongwe4-9/+147
2001-01-28Added static_cast to hush Borland C++.nyamatongwe1-2/+2
2001-01-28Updating copyright notices for 2001.nyamatongwe52-52/+52
2001-01-28Changed name of Virtually There site.nyamatongwe1-1/+1
2001-01-27Patch from James to insert spaces when pasting rectangular to keep pastednyamatongwe1-0/+8
text aligned on its left side.
2001-01-27Updated version numbers and copyright.nyamatongwe1-6/+6
2001-01-27Patch from Eric to prefer REs after ';'.nyamatongwe1-1/+5
2001-01-27Patch from Laurent to handle comments such as {} and { } correctly.nyamatongwe1-6/+20
2001-01-27Much changed ScintillaGTK widget code that draws directly onto thenyamatongwe6-323/+407
Scintilla widget with no wDraw drawing area. Signals handled directly through callbacks.
2001-01-25Patch from Steffen to handle $^W and ${"x"} as scalars.nyamatongwe1-1/+8
Further change from Neil to avoid whitespace being included in scalars.
2001-01-25Patch from Steffen to make .. as in for ( 1..9 ) work.nyamatongwe1-1/+4
2001-01-25Patch from Philippe, containing comments and a fix to SString for emptynyamatongwe3-22/+70
strings.
2001-01-24Changed isspace to isspacechar which is safe for characters >= 128.nyamatongwe5-14/+14
2001-01-24Made special scalars like $( and $_ work.nyamatongwe1-13/+9
Made some variables unsigned to avoid warnings.
2001-01-24Patch from Steffen for y (transliteration) operator.nyamatongwe1-0/+3
2001-01-23New function isspacechar to avoid bugs when character >= 0x80.nyamatongwe3-16/+26
2001-01-19Removed dead code that was commented out in last change.nyamatongwe1-23/+0
2001-01-19Patch from Steffen to handle single character words better and generallynyamatongwe1-3/+10
improve handling of words.