summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* docs now build againAraq2015-10-123-7/+6
|
* Merge pull request #3432 from FedericoCeratto/patch-4Andreas Rumpf2015-10-121-1/+3
|\ | | | | Export substituteLog
| * Add substituteLog docsFederico Ceratto2015-10-091-0/+2
| |
| * Export substituteLogFederico Ceratto2015-10-091-1/+1
| | | | | | Allow Nim users to create their own loggers
* | Merge pull request #3423 from petermora/breakSequtilsAndreas Rumpf2015-10-1213-89/+218
|\ \ | | | | | | Break sequtils
| * | updated news.txt with backward compatibility breaks of sequtilsPeter Mora2015-10-061-1/+7
| | |
| * | fixing unittestPeter Mora2015-10-061-1/+1
| | |
| * | restore {.immediate.} to toSeqPeter Mora2015-10-061-1/+1
| | |
| * | sequtils related changesPeter Mora2015-10-0511-88/+211
| | |
* | | Merge branch 'rbehrends-gc-fixes' into develAraq2015-10-124-45/+86
|\ \ \
| * | | disable new BoehmGC tests on WindowsAraq2015-10-121-4/+7
| | | |
| * | | Merge branch 'gc-fixes' of https://github.com/rbehrends/Nim into ↵Araq2015-10-124-45/+83
|/| | | | | | | | | | | | | | | rbehrends-gc-fixes
| * | | Remove spurious unsigned operations from system/threads.nim.Reimer Behrends2015-09-081-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | These operations were included before the unsigned module was incorporated directly into system.nim and subsequently caused compilation errors with --gc:go due to duplicate definitions.
| * | | Include Boehm GC in garbage collection tests.Reimer Behrends2015-09-081-3/+9
| | | |
| * | | Properly register threads with the Boehm GC.Reimer Behrends2015-09-083-38/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to be able to scan thread stacks, the Boehm GC needs to know about newly created threads. We establish the end of the stack by using GC_call_with_stack_base (this works properly also with the dual-stack Itanium architecture) and then GC_register_my_thread() to register a thrad and GC_unregister_my_thread() to unregister it again. This patch also includes a modification for the refc and markandsweep collectors to set the stack bottom for thread stacks correctly even if an optimizer aggressively inlines and optimizes procedures (this is already being done for the stack of the main thread). Finally, we use the {.noconv.} pragma for the Boehm GC, as the Boehm API uses no specific calling convention.
| * | | Properly initialize the Boehm GC on all platforms.Reimer Behrends2015-09-061-1/+1
| | | |
* | | | nimsuggest: added 'dus' command that combines 'def' and 'use'Araq2015-10-122-2/+8
| | | |
* | | | cleaned up ospaths moduleAraq2015-10-122-19/+30
| | | |
* | | | added setResult that simply takes a nodeAraq2015-10-121-0/+8
| | | |
* | | | Merge pull request #3433 from jyapayne/develDominik Picheta2015-10-101-0/+178
|\ \ \ \ | | | | | | | | | | Added useful procs to strutils for string testing.
| * | | | Made strutils string test procs less redundant.Joey Payne2015-10-101-49/+49
| | | | |
| * | | | Added tests for string test procs.Joey Payne2015-10-101-0/+52
| | | | |
| * | | | Changed alphanumeric check to "or" instead of "and".Joey Payne2015-10-101-1/+1
| | | | |
| * | | | Added useful procs to strutils for string testing.Joey Payne2015-10-091-0/+126
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added procs: isAlpha isAlphaNumeric isDigit isSpace isUpper isLower
* | | | Update readme.mdVarriount2015-10-101-5/+5
| | | |
* | | | Update readme.mdVarriount2015-10-101-1/+0
|/ / /
* | | Merge pull request #3425 from jlp765/hashes1Dominik Picheta2015-10-081-4/+70
|\ \ \ | | | | | | | | added hash procs for handling portions of strings/arrays/seqs.
| * | | added hash procs for handling portions of strings/arrays/seqs.JamesP2015-10-071-4/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | added tests at bottom of file changed some doco layout Makes hashing iteratively through buffers faster when you don't have to pass copied portions of the buffer to the hash function
* | | | fixes #635Araq2015-10-071-8/+20
| | | |
* | | | osproc: fixes a long standing buffering bug on WindowsAraq2015-10-071-1/+1
| | | |
* | | | fixes regressionAraq2015-10-071-3/+3
| | | |
* | | | Merge pull request #3314 from haiodo/emscripten-supportAndreas Rumpf2015-10-074-9/+118
|\ \ \ \ | | | | | | | | | | Emscripten support
| * \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-10-0639-133/+294
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-10-0135-83/+156
| |\ \ \ \
| * \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-3013-45/+338
| |\ \ \ \ \
| * \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-291-0/+10
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-287-8/+87
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-251-0/+25
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-2519-636/+381
| |\ \ \ \ \ \ \ \ \
| * | | | | | | | | | Added a test to check how gc works in emscripten.Andrey Sobolev2015-09-232-0/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Test will fail in emscripten and pass in normal environment.
| * | | | | | | | | | Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-2310-43/+61
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-219-60/+128
| |\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-211-0/+1
| |\ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-1814-20/+150
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-1816-52/+208
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-1632-100/+484
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-157-12/+66
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-141-0/+8
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | Change TAddress to ByteAddressAndrey Sobolev2015-09-141-3/+3
| | | | | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | | Merge remote-tracking branch 'nim-lang/devel' into emscripten-supportAndrey Sobolev2015-09-1421-69/+319
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \