summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* tools: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-047-253/+253
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-0467-2436/+2436
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-0432-570/+570
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* Merge pull request #3288 from Snowie/develDominik Picheta2015-09-041-2/+10
|\ | | | | Include port in host header as expected
| * Include port in host header as expectedDoran2015-09-041-2/+10
| |
* | Merge pull request #3285 from ↵Dominik Picheta2015-09-041-38/+39
|\ \ | | | | | | | | | | | | nanoant/patch/lib-pure-osproc-spawn-vs-fork-simplify osproc: Define and select spawn/fork same way
| * | osproc: Define and select spawn/fork same wayAdam Strzelecki2015-09-031-38/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | Previously startProcessAuxFork was defined even when it was unused, also the compile time condition to select spawn vs fork was not always the same for definitions and calls. This change just defines the condition in one place as constant, then in other places we just check for `when useProcessAuxSpawn`.
* | | split os into os and ospaths parts; ospaths is available for NimScript; ↵Araq2015-09-046-527/+605
| |/ |/| | | | | better NimScript support
* | Merge pull request #3281 from nanoant/patch/lib-pure-times-hotfixDominik Picheta2015-09-031-14/+18
|\ \ | | | | | | times: Export & document countLeapYears/Years/Days
| * | times: Export & document countLeapYears/Years/DaysAdam Strzelecki2015-09-031-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | Previously countYears & countDays procs were not public, but there were unused, causing unnecessary warnings generated by standard library. Since these procs seems to be useful it is better to just export them than remove them completely. Also turning inline comments into proper documentation.
* | | improvements for NimScript supportAraq2015-09-033-59/+62
| | |
* | | fixes 'line too long' warningsAraq2015-09-031-11/+18
| | |
* | | optimized writetrackingAraq2015-09-031-139/+149
| |/ |/|
* | Merge pull request #3273 from yglukhov/js-copy-fixAndreas Rumpf2015-09-031-9/+5
|\ \ | | | | | | Fixed JS copying.
| * | Fixed JS copying.Yuriy Glukhov2015-08-311-9/+5
| | |
* | | Merge pull request #3264 from jlp765/db_mysqlAndreas Rumpf2015-09-031-4/+1
|\ \ \ | | | | | | | | fixes #3220 lib/impure/db_mysql.nim getValue()
| * | | fixes #3220 lib/impure/db_mysql.nim getValue()JamesP2015-08-281-4/+1
| | | | | | | | | | | | | | | | | | | | mysql connector command out of sync error due to breaking the fastRows iterator loop
* | | | Merge pull request #3280 from jlp765/endbAndreas Rumpf2015-09-031-2/+20
|\ \ \ \ | | | | | | | | | | lib/system/endb.nim bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global
| * | | | bug fix: Switch state to dbgSkipCurrent for Eval, Local & Global commands.JamesP2015-09-031-2/+20
| |/ / / | | | | | | | | | | | | | | | | | | | | This avoids stepping into the endb code if previous command was single step. Other two changes are trailing spaces removed.
* | | | Merge pull request #3266 from rbehrends/fix-readlineAndreas Rumpf2015-09-031-1/+10
|\ \ \ \ | |_|_|/ |/| | | Fix readLine handling of long lines.
| * | | Fix readLine handling of long lines.Reimer Behrends2015-08-281-1/+10
| |/ /
* | | 'var T' doesn't imply escapingAraq2015-09-021-1/+1
| | |
* | | formatFloat takes an optional decimalSep parameterAraq2015-09-012-10/+19
| | |
* | | write tracking: leaner code; minor bug fixes (still unusable)Araq2015-08-311-85/+61
| | |
* | | first implementation of write tracking and escape analysis; still disabledAraq2015-08-315-21/+319
| | |
* | | Merge branch 'reactormonk-coro-remove-prefix' into develDominik Picheta2015-08-301-19/+17
|\ \ \
| * | | Add :idx: for `suspend` in coro module.Dominik Picheta2015-08-301-0/+2
| | | |
| * | | Merge branch 'coro-remove-prefix' of https://github.com/reactormonk/nim into ↵Dominik Picheta2015-08-301-19/+15
|/| | | | | | | | | | | | | | | reactormonk-coro-remove-prefix
| * | | coro.sleep -> suspendSimon Hafner2015-08-301-5/+5
| | | |
| * | | removed coro deprecationsSimon Hafner2015-08-251-6/+0
| | | |
| * | | removed coro prefixes from coro.nimSimon Hafner2015-08-251-17/+19
| | | |
* | | | Merge pull request #3271 from xland/develDominik Picheta2015-08-301-0/+2
|\ \ \ \ | |_|_|/ |/| | | Add link button for IUP wrapper
| * | | Add link button for IUP wrapperxland2015-08-301-0/+2
|/ / / | | | | | | Add link button for IUP wrapper
* | | Merge pull request #3242 from yglukhov/byvar-fixAndreas Rumpf2015-08-282-5/+33
|\ \ \ | | | | | | | | JS: Fixed passing byvar
| * | | Fixed passing byvarYuriy Glukhov2015-08-252-5/+33
| | | |
* | | | Merge pull request #3265 from coffeepots/patch-2Andreas Rumpf2015-08-281-0/+4
|\ \ \ \ | |_|_|/ |/| | | Add widestring versions of SQLPrepare and SQLExecDirect
| * | | Add widestring versions of SQLPrepare and SQLExecDirectcoffeepots2015-08-281-0/+4
|/ / / | | | | | | SQLPrepareW and SQLExecDirectW are needed to use unicode as otherwise ODBC only recognises ansi codepages.
* | | update Visual Studio command line flagsAraq2015-08-271-1/+1
| | |
* | | Merge pull request #3251 from jck/msp430Dominik Picheta2015-08-262-2/+5
|\ \ \ | | | | | | | | add msp430 cpu support
| * | | add msp430 cpu supportKeerthan Jaic2015-08-262-2/+5
| | | |
* | | | make --gc:none work with --threads:onAraq2015-08-261-1/+1
| | | |
* | | | fixes #3237Araq2015-08-251-3/+9
|/ / /
* | | Merge pull request #3239 from xyz32/develAndreas Rumpf2015-08-251-4/+15
|\ \ \ | | | | | | | | When reading files, check if the eof flag is set before throwing.
| * | | remove fileErrorxyz2015-08-252-7/+1
| | | |
| * | | Append the readAllBuffer to what was read alreadyxyz2015-08-231-1/+1
| | | |
| * | | Use seLen as sugested, and fix typosxyz2015-08-232-5/+4
| | | |
| * | | When reading files, check if the eof flag is set before throwing.xyz2015-08-222-5/+23
| | | |
* | | | Merge pull request #3234 from petermora/mapAutoAutoAndreas Rumpf2015-08-252-5/+70
|\ \ \ \ | |_|_|/ |/| | | extending metatype matching in sigmatch.nim
| * | | extending metatype matching in sigmatch.nimPeter Mora2015-08-212-5/+70
| | | |
* | | | fixes #3245Araq2015-08-252-2/+4
| | | |