Dominik Picheta
29fd3edb9c
Merge pull request #3514 from vegansk/3513_pgsql_prepstat
...
Fixed issue 3513: wrong setupQuery realization
2015-11-11 16:09:18 +00:00
Reimer Behrends
67e62302b4
Avoid signed shifts and bit operations for sets.
...
Set operations used "1<<n" style shifts, which led to undefined
behavior if the signed shift overflowed. Similarly, the right-hand
side of the operator sometimes used a mix of signed and unsigned
integers that were combined with "&". This patch attempts to provide
a consistent implementation that uses unsigned integers everywhere.
2015-11-11 14:19:09 +01:00
Araq
f9ad735e55
documented untyped/typed meta-types
2015-11-10 22:51:03 +01:00
Araq
b6374f1f68
fixes newly introduced oswalkdir module
2015-11-10 15:56:17 +01:00
Araq
7578d580e0
added oswalkdir.nim for the JS target
2015-11-10 15:35:02 +01:00
Araq
2aff716134
os.walkDir is available at compile time
2015-11-10 15:31:21 +01:00
Araq
81f876040b
added newTree to ast.nim
2015-11-10 15:31:21 +01:00
Araq
e9313dd362
added prefix matching to critbits.nim
2015-11-10 15:31:21 +01:00
Araq
209a5fc1bc
updated old links on the website
2015-11-10 15:31:21 +01:00
Dominik Picheta
92f2fd9655
Merge pull request #3527 from tulayang/devel
...
Fix osproc.close
2015-11-10 10:18:32 +00:00
wt
696b89c111
Fix osproc.close
2015-11-10 11:13:04 +08:00
Dominik Picheta
60e5a2b2f5
Merge pull request #3504 from Matt14916/xmlparser-entities
...
Create entity nodes with xmlparser, add a test to xmlparser
2015-11-08 13:07:38 +00:00
Dominik Picheta
d8738f8f5d
Merge pull request #3521 from gour/tools-link-fix
...
fix docgen link
2015-11-08 12:58:00 +00:00
Dominik Picheta
c83e4390d8
Modified setDefaultLibpath to search using findExe"nim".
...
This is so that Nimble (and other tools) which use the compiler modules
for nimscript support or other purposes can find $lib.
2015-11-07 15:48:14 +00:00
Gour
ab0a7303bf
fix docgen link
2015-11-07 09:33:55 +01:00
Anatoly Galiulin
c017904363
Fixed issue 3513: wrong setupQuery realization
2015-11-06 10:24:23 +06:00
Araq
ae60f4ae76
better nimsuggest support
2015-11-03 14:52:37 +01:00
Araq
5c8342eef9
Nimscript fixes 'cpFile' typo
2015-11-03 14:52:36 +01:00
Araq
86c8a7a947
nimrod is obsolete
2015-11-03 14:52:36 +01:00
Araq
c87f4d24eb
fixes start.bat file
2015-11-03 14:52:35 +01:00
Araq
1dda0e4b84
fixes a critical xlen codegen bug
2015-11-03 14:52:34 +01:00
Andreas Rumpf
618d0bc263
Merge pull request #3509 from yashaka/void-context-doc-rephrase
...
updated 'Void context' doc specifying more precisely for what the void context is triggered
2015-11-02 20:30:07 +01:00
Iakiv Kramarenko
3a5a7a4edf
updated 'Void context' section specifying more precisely that assignment to result triggers MANDATORY void context FOR THE SUBSEQUENT EXPRESSIONS
2015-11-02 18:50:10 +02:00
Andreas Rumpf
a64d7be3a9
Merge pull request #3508 from VKlayd/devel
...
Install stdlib.nimble in lib for nimscript fix
2015-11-02 11:43:40 +01:00
Victor Korkin
e4a3f9fa4b
Install stdlib.nimble in lib
...
Without stdlib.nimble in libs directory Nimscript is not work properly.
2015-11-02 12:48:19 +06:00
Araq
d673fb3911
nimsuggest: added 'chk', 'outline' and 'highlight' features
2015-11-01 23:26:31 +01:00
Andreas Rumpf
d883781071
Merge pull request #3490 from oderwat/osx-libiconv
...
Removed libiconv prefix (on OS X) to make encodings compile on OS X.
2015-11-01 12:59:33 +01:00
Dominik Picheta
29a40e37d5
Use nanoseconds for timeouts less than 1 second on Mac OS X.
2015-11-01 11:28:11 +00:00
Dominik Picheta
0249bd0e6c
Add missing untestable test.
2015-11-01 10:37:04 +00:00
Dominik Picheta
ae48f26798
Fix poll's timeout for Mac OS X in the seletors module.
2015-11-01 10:37:04 +00:00
Matt Sullivan
8671656e6f
Add a test to xmlparser
2015-10-31 13:30:07 -05:00
Matt Sullivan
097c508897
Create entity nodes with xmlparser
2015-10-30 23:42:29 -05:00
Andreas Rumpf
f3814be530
Merge pull request #3501 from nanoant/patch/smaller-build.sh-using-trace
...
Patch/smaller build.sh using trace
2015-10-30 21:06:34 +01:00
Adam Strzelecki
fd1011e940
build.sh: Output error messages to stderr
...
Just in case we are running this in some CI.
2015-10-30 15:09:34 +01:00
Adam Strzelecki
1608bd99eb
build.sh: Use shell built-in command trace
...
Rather than issuing echo "cmd..." then cmd... itself, we enable shell trace
facility via set -x, which is POSIX shell standard command and is compatible
with all UNIX shells.
This effectively cuts build.sh size twice, since we don't need to double stuff
there, also making it human readable.
We are also setting PS4 (trace prefix) to none, instead final echo "SUCCESS",
we issue : SUCCESS command which outputs its contents in trace.
2015-10-30 15:06:15 +01:00
Adam Strzelecki
f838c1baa4
fixes #3498
...
Previously it was not possible to use template arguments in template body as
the symbols were not resolved correctly leading to Error: undeclared
identifier: 'XX', eg.:
template defaultOf[T](t: T): expr = (var d: T; d)
echo defaultOf(1) #<- invalid identifier, but should output 0
2015-10-30 12:05:02 +01:00
Araq
22fc9a9470
development version is 0.12.1, not 0.12.0
2015-10-29 23:33:27 +01:00
Dominik Picheta
8b8005e1a3
Merge pull request #3495 from bambuchaAdm/libressl-compatibility
...
Add serach for libssl.so without version suffix.
2015-10-29 19:40:09 +00:00
Łukasz Dubiel
8e9441b8cd
Add serach for libssl.so without version suffix.
2015-10-29 20:01:43 +01:00
Hans Raaf
9b64a73bad
Removed libiconv prefix (on OS X) to make encodings compile on OS X.
...
I am not sure since which version OS X does include the libiconv library
without the `lib` prefix. But it seems this is the case for some years
now. If there are ways to check for the OS X version at compile time
this may be needed to support older OS X versions. But I guess thats not
needed for most users working with Nim anyway.
2015-10-28 20:36:09 +01:00
Araq
8e4b5e10ba
updated compiler.nimble file
2015-10-28 14:19:12 +01:00
reactormonk
21755a64fc
Merge pull request #3483 from sanxiyn/patch-1
...
Update website link
2015-10-28 11:28:05 +01:00
Seo Sanghyeon
2309940f02
Update website link
2015-10-28 18:41:42 +09:00
Araq
22a702868b
updated todo.txt
2015-10-28 08:13:49 +01:00
Araq
c02e7954af
Merge branch 'devel' of https://github.com/nim-lang/Nim into devel
2015-10-27 23:38:25 +01:00
Araq
f03ce85518
news.txt: fixed typo
2015-10-27 23:38:09 +01:00
Dominik Picheta
3892969af4
Merge branch 'devel'
2015-10-27 23:36:00 +01:00
Dominik Picheta
d9415fd5ce
Download links for new version.
2015-10-27 23:09:14 +01:00
Dominik Picheta
30cc353831
Prep for v0.12.0
v0.12.0
2015-10-27 22:28:42 +01:00
Dominik Picheta
b186493f01
Merge pull request #3475 from mjoud/shrdoc
...
fixed shr documentation
2015-10-27 21:03:55 +01:00