summary refs log tree commit diff stats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* C++ codegen: map nil to nullptrAraq2018-10-021-1/+1
|
* Merge pull request #9151 from flaviut/fix-9053Dominik Picheta2018-10-011-6/+6
|\ | | | | Fix option documentation in nre (fixes #9053)
| * Fix option documentation in nre (fixes #9053)Flaviu Tamas2018-10-011-6/+6
| |
* | Merge branch 'devel' into fix_issues_9126Andreas Rumpf2018-10-015-14/+30
|\ \
| * | fixes #9126Araq2018-10-011-1/+1
| | |
| * | Merge pull request #9115 from mashingan/fix-json-aliasedAndreas Rumpf2018-09-291-1/+15
| |\ \ | | | | | | | | Fix #9111; error when parsing to aliased type field
| | * | Fix #9111; error when parsing to aliased type fieldmashingan2018-09-291-1/+15
| | | |
| * | | docs: remove most stale links; refs #9109Araq2018-09-292-10/+7
| |/ /
| * | Don't prevent ',' from getting escaped in theindex.htmlKaushal Modi2018-09-282-3/+8
| | | | | | | | | | | | | | | | | | - Enable escaping of links in theindex.html - Fixes https://github.com/nim-lang/Nim/issues/9107. - Second part of the fix for https://github.com/nim-lang/Nim/issues/9097.
* | | Fix #9126: use splitPath instead of substrYasuhiro Horimoto2018-09-301-2/+2
|/ /
* | Allocate OpenSSL memory outside of the thread heapLemonBoy2018-09-271-5/+5
| | | | | | | | | | | | | | Prevent spurious segfaults when OpenSSL is used in multithreaded environments since the library isn't able to handle thread-local memory. Fixes #9016
* | Merge pull request #9057 from LemonBoy/fix-9055Dominik Picheta2018-09-251-7/+4
|\ \ | | | | | | Make getSockDomain work with AF_UNIX sockets
| * | Make getSockDomain work with AF_UNIX socketsLemonBoy2018-09-241-7/+4
| |/ | | | | | | Fixes #9055
* | Merge pull request #9065 from alaviss/haiku-32bit-fixAndreas Rumpf2018-09-251-3/+3
|\ \ | | | | | | cpuinfo: fix compilation for 32bit Haiku
| * | cpuinfo: fix compilation for 32bit HaikuLeorize2018-09-251-3/+3
| | |
* | | update version to 0.19Andreas Rumpf2018-09-251-2/+2
| | |
* | | Merge pull request #9059 from Vindaar/onSignalModAndreas Rumpf2018-09-251-5/+12
|\ \ \ | |/ / |/| | fix `posix.onSignal` example, inject current signal as `s`
| * | inject `sig` from anonymous proc instead of for loopSebastian Schmidt2018-09-241-4/+5
| | |
| * | fix `posix.onSignal` example, inject current signal as `s`Vindaar2018-09-241-5/+11
| |/
* | .error for routines now can also have a custom error message; improve error ↵Araq2018-09-251-2/+10
| | | | | | | | message for 'nil' strings
* | math.nim: document what to use instead of 'fmod'Araq2018-09-251-2/+2
| |
* | os: add getAppFilename() implementation for HaikuLeorize2018-09-241-0/+20
| |
* | os.nim: allow walkDir to work on hierarchies with dangling symbolic links; ↵Andreas Rumpf2018-09-241-5/+1
|/ | | | refs #9034
* Merge pull request #9035 from LemonBoy/fix-3075Andreas Rumpf2018-09-221-0/+3
|\ | | | | Skip nested procedures in .async. macro
| * Skip nested procedures in .async. macroLemonBoy2018-09-221-0/+3
| | | | | | | | Fixes #3075
* | ioselectors_poll: don't pollRemove() if not neededLeorize2018-09-221-2/+3
|/ | | | pollAdd() is called only if events set isn't empty.
* Merge pull request #9015 from LemonBoy/fix-9013Andreas Rumpf2018-09-191-1/+5
|\ | | | | Fix linking issue in cpp codegen
| * Fix linking issue in cpp codegenLemonBoy2018-09-191-1/+5
| | | | | | | | | | | | | | Declare the root symbol only once and have the other modules depending on it emit an `extern` declaration. Fixes #9013
* | Merge pull request #9011 from LemonBoy/fix-9008Andreas Rumpf2018-09-1910-60/+56
|\ \ | | | | | | Convert *_family fields to cushort
| * | Convert *_family fields to cushortLemonBoy2018-09-1910-60/+56
| |/ | | | | | | Fixes #9008
* / stdlib: minor changes to avoid compiler warningsAndreas Rumpf2018-09-193-4/+4
|/
* Implements the equals operator for openarrayZahary Karadjov2018-09-181-0/+10
|
* Merge pull request #8937 from Vindaar/fixes-8925Andreas Rumpf2018-09-181-2/+2
|\ | | | | fix #8925 by using `getTypeInst` instead of `getType`
| * fix #8925 by using `getTypeInst` instead of `getType`Vindaar2018-09-171-2/+2
| |
* | some simple sub-expression elimination not applied by the previos authorZahary Karadjov2018-09-171-11/+13
| |
* | Bugfix: custom pragmas were not working on public fieldsZahary Karadjov2018-09-171-4/+9
| |
* | name mangling: also special case the backslash characterAraq2018-09-171-0/+1
| |
* | fixes #7500Araq2018-09-171-2/+26
|/
* Fix regression due to type changeLemonBoy2018-09-161-1/+1
| | | | | The change is technically correct but requires too much type juggling and the effort outweighs the gains.
* fixes #8911Andreas Rumpf2018-09-161-7/+7
|
* Merge pull request #8897 from ↵Andreas Rumpf2018-09-162-5/+5
|\ | | | | | | | | timotheecour/pr_startProcessAuxSpawn_raiseOSError_context add data.sysCommand when startProcessAuxSpawn raises
| * add data.sysCommand when startProcessAuxSpawn raisesTimothee Cour2018-09-062-5/+5
| |
* | Merge pull request #8977 from LemonBoy/fix-unix-socketsAndreas Rumpf2018-09-162-3/+3
|\ \ | | | | | | Fix connectUnix/bindUnix with abstract socket paths
| * | Fix connectUnix/bindUnix with abstract socket pathsLemonBoy2018-09-152-3/+3
| | | | | | | | | | | | | | | | | | | | | The only way to make this work for both abstract and non-abstract sockets is to send the kernel an incomplete structure. Reported by Epictek on the forum.
* | | Merge pull request #8975 from fragcolor-xyz/develAndreas Rumpf2018-09-161-1/+1
|\ \ \ | | | | | | | | Improve the compiler option cppCompileToNamespace
| * | | improve the compiler option "cppCompileToNamespace", a custom namespace can ↵Giovanni2018-09-151-1/+1
| | | | | | | | | | | | | | | | now be set
* | | | Merge branch 'devel' of github.com:nim-lang/Nim into develAraq2018-09-151-4/+3
|\ \ \ \
| * | | | don't reuse code from 0.18.0skilchen2018-09-151-9/+2
| | | | |
| * | | | more efficient fix for #8961skilchen2018-09-151-0/+6
| |/ / /
* | | | typetraits: Dots for sentence endings.Araq2018-09-151-2/+2
| | | |