summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Adds note about change to newsJoseph Turner2015-04-091-1/+5
|
* Adds test case to is isMainModule blockJoseph Turner2015-04-081-1/+6
| | | | Adds the test case that originally caused the bug, issue #2418.
* Fixes matching error #2418Joseph Turner2015-04-081-5/+8
| | | | | | | | Fixes the split iterator, the main problem was with the incrementation of 'last'. Last was first incremented to the index of the first character after the match, but was then incremented again at the beginning of the while loop. This caused a problem if that character after the first match, also matched the regular expression.
* Merge pull request #2484 from yglukhov/macos-sigpipeAndreas Rumpf2015-04-083-6/+11
|\ | | | | Fixed SIGPIPE on MacOS
| * Fixed SIGPIPE on MacOSyglukhov2015-04-083-6/+11
| |
* | fixes #2489Araq2015-04-082-1/+10
| |
* | minor doc improvementsAraq2015-04-082-5/+7
| |
* | Merge pull request #2486 from endragor/rational-hashAndreas Rumpf2015-04-081-0/+14
|\ \ | | | | | | Add hash proc for Rational
| * | Added hash proc for RationalRuslan Mustakov2015-04-081-0/+14
| | |
* | | Merge pull request #2487 from endragor/rational-cmp-procvarAndreas Rumpf2015-04-081-1/+1
|\ \ \ | | | | | | | | Add procvar pragma to rationals.cmp
| * | | Added procvar pragma to rationals.cmpRuslan Mustakov2015-04-081-1/+1
| |/ /
* | | Merge pull request #2483 from def-/ropesAndreas Rumpf2015-04-0822-1486/+1453
|\ \ \ | |/ / |/| | Get rid of deprecation warnings
| * | Get rid of deprecation warningsdef2015-04-0722-1486/+1453
| |/
* | Merge pull request #2472 from def-/naturalAndreas Rumpf2015-04-0710-1196/+1196
|\ \ | |/ |/| Use more Natural and Positive numbers in proc parameters
| * Use more Natural and Positive numbers in proc parametersdef2015-04-0610-1196/+1196
| | | | | | | | | | - Didn't go through all modules, only the main ones I thought of - Building the compiler and tests still work
* | Merge pull request #2475 from yglukhov/dom-renamesAndreas Rumpf2015-04-071-51/+76
|\ \ | | | | | | DOM types renamed.
| * | DOM types renamed.yglukhov2015-04-061-51/+76
| |/
* | Merge pull request #2479 from def-/torationalAndreas Rumpf2015-04-071-2/+2
|\ \ | | | | | | Fix toRational
| * | Fix toRationaldef2015-04-071-2/+2
| | |
* | | Merge pull request #2480 from def-/containerAndreas Rumpf2015-04-071-1/+1
|\ \ \ | |/ / |/| | Fix container example in manual a bit
| * | Fix container example in manual a bitdef2015-04-071-1/+1
|/ /
* | better alternative to 'override'Araq2015-04-073-19/+18
| |
* | added system.typed and system.untyped aliasesAraq2015-04-074-6/+12
| |
* | fixes #2427Araq2015-04-062-2/+16
| |
* | overloading of '=' worksAraq2015-04-069-6/+147
| |
* | first implementation of overloading of '='; missing: rewriting let/var sectionsAraq2015-04-0612-215/+373
|/
* Merge pull request #2428 from arnetheduck/comp-lib-ropesAndreas Rumpf2015-04-0615-191/+202
|\ | | | | Comp lib ropes
| * ropes: remove more unnecessary checksJacek Sieka2015-04-032-5/+5
| |
| * compiler_ropes: remove unnecessary length checkJacek Sieka2015-04-031-1/+1
| | | | | | | | frmt[frmt.len] isn't an out-of-bounds access for strings (!)
| * compiler_ropes: deprecate old function namesJacek Sieka2015-04-011-16/+15
| |
| * compiler_ropes: TRope -> RopeObj, PRope* -> Rope*Jacek Sieka2015-04-011-50/+56
| |
| * compiler_ropes: toRope -> ropeJacek Sieka2015-04-011-11/+17
| |
| * ropes: make lib & compiler frmt more similar, fix out-of-bounds accesses in ↵Jacek Sieka2015-04-012-15/+30
| | | | | | | | lib ropes
| * compiler_ropes: ropef -> %, appf -> addfJacek Sieka2015-04-011-19/+21
| |
| * compiler_ropes: ropeEqualsFile -> equalsFile, no more max rope component lengthJacek Sieka2015-04-012-65/+41
| | | | | | | | | | | | | | read file data in bigger blocks, avoiding lots of file api calls also removed crc step - seems easier to simply compare the bytes rather than calculating two crc's
| * compiler_ropes: add `&` and addJacek Sieka2015-04-011-24/+37
| | | | | | | | | | Invokations still need to be updated, but that's a lot of changes, so save for later
| * compiler_ropes: ropeToStr -> $Jacek Sieka2015-04-0113-37/+32
| |
| * compiler_ropes: don't expose newRopeJacek Sieka2015-04-013-5/+5
| |
| * compiler_ropes: ropeLen -> lenJacek Sieka2015-04-011-2/+1
| |
* | Added accessor procs with default params for JsonNodes.Dominik Picheta2015-04-051-0/+43
| |
* | Merge pull request #2443 from yglukhov/dom-reinheritAndreas Rumpf2015-04-051-89/+81
|\ \ | | | | | | Correct dom objects inheritance.
| * | Correct dom objects inheritance.yglukhov2015-04-011-89/+81
| | |
* | | Merge pull request #2452 from apense/patch-1Andreas Rumpf2015-04-051-0/+2
|\ \ \ | | | | | | | | Update system.nim
| * | | Update system.nimapense2015-04-031-0/+2
| | | | | | | | | | | | Should let the documentation generate with proper code blocks
* | | | Merge pull request #2455 from def-/iupAndreas Rumpf2015-04-051-114/+114
|\ \ \ \ | | | | | | | | | | Make iup wrapper work with iup 3.1
| * | | | Make iup wrapper work with iup 3.1def2015-04-041-114/+114
| | | | |
* | | | | Merge pull request #2464 from reactormonk/math-no-side-effectAndreas Rumpf2015-04-051-0/+7
|\ \ \ \ \ | | | | | | | | | | | | no side effects on math procs, fixes #2458
| * | | | | no side effects on math procs, fixes #2458Simon Hafner2015-04-041-0/+7
| |/ / / /
* | | | | Merge pull request #2461 from ReneSac/develreactormonk2015-04-051-174/+175
|\ \ \ \ \ | | | | | | | | | | | | Fix warning about sets.testModule() not used.
| * | | | | Fix warning about sets.testModule() not used.ReneSac2015-04-041-174/+175
| |/ / / /