Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-02-14 | updated Scintilla submodule: fixed tab stop calculation on Curses | Robin Haberkorn | 1 | -3/+3 | |
* also did some whitespace cleanup in SciTECO now that tabs are displayed properly | |||||
2015-02-11 | updated copyright to 2015 | Robin Haberkorn | 1 | -1/+1 | |
2014-11-11 | added all of SciTECO's declarations to the "SciTECO" namespace | Robin Haberkorn | 1 | -0/+4 | |
normally, since SciTECO is not a library, this is not strictly necessary since every library should use proper name prefixes or namespaces for all global declarations to avoid name clashes. However * you cannot always rely on that * Scintilla does violate the practice of using prefixes or namespaces. The public APIs are OK, but it does define global functions/methods, e.g. for "Document" that clashed with SciTECO's "TECODocument" class at link-time. Scintilla can put its definitions in a namespace, but this feature cannot be easily enabled without patching Scintilla. * a "SciTECO" namespace will be necessary if "SciTECO" is ever to be turned into a library. Even if this library will have only a C-linkage API, it must ensure it doesn't clutter the global namespace. So the old "TECODocument" class was renamed back to "Document" (SciTECO::Document). | |||||
2014-02-15 | updated Copyright to year 2014 | Robin Haberkorn | 1 | -1/+1 | |
2014-02-15 | removed most exception specifications: allow bad_allocs to propagate | Robin Haberkorn | 1 | -14/+14 | |
* specifications resulted in runtime errors (unexpected exception) when bad_alloc ocurred * specs should be used scarcely: only when the errors that may be thrown are all known and for documentary purposes | |||||
2013-03-17 | fixed ^EG pattern match character: use QRegSpecMachine to parse register ↵ | Robin Haberkorn | 1 | -0/+3 | |
specifications * allows full Q-Reg syntax | |||||
2013-01-20 | fixed search-replace commands if search fails (do not insert then) | Robin Haberkorn | 1 | -2/+16 | |
* updated TODO | |||||
2013-01-19 | updated copyright (2012-2013) | Robin Haberkorn | 1 | -1/+1 | |
2012-12-04 | added copyright notice to every source file | Robin Haberkorn | 1 | -0/+17 | |
2012-12-04 | autoconf preparation: move everything into src/ subdir | Robin Haberkorn | 1 | -0/+102 | |