summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
| * cursor inference bugfixAndreas Rumpf2020-07-202-4/+65
|/
* hotfix: firstOrd/lastOrd for 'tyLent' as it shows up in strange places, as usualAndreas Rumpf2020-07-201-2/+2
|
* readLine: Unicode support for Windows console (#14782)Andreas Rumpf2020-07-201-0/+62
|\ | | | | | | | | | | | | | | | | | | | | | | * readLine: Unicode support for Windows console When input is read from the Windows console, input encoding is UTF16. This is translated internally to UTF8. * readLine: Remove recursive imports * readLine: Fix issues with --gc:arc **--gc:arc** defines **nimv2**. This changes the definition of **WideCStringObj**. Also an empty string should be returned in case of EOF.
| * readLine: Fix issues with --gc:arcktamp2020-06-261-6/+11
| | | | | | | | **--gc:arc** defines **nimv2**. This changes the definition of **WideCStringObj**. Also an empty string should be returned in case of EOF.
| * readLine: Remove recursive importsktamp2020-06-251-10/+31
| |
| * readLine: Unicode support for Windows consolektamp2020-06-231-0/+36
| | | | | | When input is read from the Windows console, input encoding is UTF16. This is translated internally to UTF8.
* | fixes #14194 (#15023)Andreas Rumpf2020-07-201-1/+2
| |
* | koch: use in-tree Nim to run test if possible (#15018)alaviss2020-07-201-2/+4
| | | | | | Fixes #15013
* | 'isolate' builtin; refs https://github.com/nim-lang/RFCs/issues/244 (#15011)Andreas Rumpf2020-07-209-6/+194
| |
* | io: fix SetHandleInformation signature to match Windows' (#15017)alaviss2020-07-201-2/+7
| | | | | | | | | | | | | | * io: fix SetHandleInformation signature to match Windows' Fixes #14980 * rename Handle -> IoHandle because system.nim is a mess
* | enable 'nimterop' testnarimiran2020-07-201-1/+1
| |
* | [Backport] Fixes callbacks being dropped on Linux/macOS/BSD. (#15012)Dominik Picheta2020-07-192-1/+73
| | | | | | | | | | | | | | | | | | Fixes #15003. This is a serious bug which occurs when data cannot be read/sent immediately and there are a bunch of other read/write events pending. What happens is that the new events are dropped which results in the case of the reported bug resulted in some data not being sent (!).
* | threadpool.nim: minor code style changesAraq2020-07-181-5/+5
| |
* | fix docs for nativesocket read/write selects (#15010)Andy Davidoff2020-07-181-2/+2
| | | | | | The sockets which *cannot* be _[read from or written to]_ will also be removed from ``readfds``.
* | enable,document,test getImplTransformed, very useful for understanding how ↵Timothee Cour2020-07-182-2/+25
| | | | | | | | | | | | nim transforms code (#14924) * enable,document,test getImplTransformed, very useful for understanding how nim transforms code
* | Fix #14906 (#14949)Tomohiro2020-07-183-9/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix #14906 by wrapping outputStream with PipeOutStream * Fix compile error when ./build_all.sh * Use PipeOutStream on posix * Fix compile error when build_all.sh * Use ptr UncheckedArray * Replace copyRefObj * Remove tmp buffer from posPeekData * Add more tests for outputStream * Add comments about PipeOutStream.buffer * Fix bug in posReadLine * Move implementation of newPipeOutStream to streamwrapper module
* | fix odbc regressions (#15009) [backport]cooldome2020-07-181-2/+2
| | | | | | | | | | * fix odbc regressions * make only necessary changes
* | arc: cursors for simple for loop variables (#15008)Andreas Rumpf2020-07-174-7/+52
| | | | | | | | | | * arc: cursors for simple for loop variables * merged devel
* | fix #14822 copy test into var in matrix process, so can reset startTime ↵Bung2020-07-171-4/+6
| | | | | | | | | | | | | | | | | | before actully run (#15000) * TTest pass by ref , so can reset startTime before actully run * change TTest to ref type * clone test in matrix process
* | fix #14082, don't crash on incorrectly formatted input (#14977) [backport]Miran2020-07-173-42/+42
| | | | | | | | | | | | | | * fix #14082, don't crash on incorrectly formatted input * address code review * remove duplication
* | Show that a variable is cursor in --expandArc (#15002)Clyybber2020-07-175-23/+23
| |
* | fix #15006 (#15007)flywind2020-07-171-1/+1
| |
* | cursor inference: hotfix (#14999)Andreas Rumpf2020-07-161-8/+13
| |
* | fix #13621, the nim-livereload is mentioned as proposal in #8927 (#14998)Bung2020-07-161-2/+1
| |
* | Fix #14994 (#14996)Clyybber2020-07-153-1/+17
| | | | | | | | | | | | | | * Fix #14994 * Revert misplaced "optimization" * Typo
* | disable debug outputAndreas Rumpf2020-07-151-1/+1
| |
* | An optimizer for ARC (#14962)Andreas Rumpf2020-07-1519-62/+895
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: an optimizer for ARC * do not optimize away destructors in 'finally' if unstructured control flow is involved * optimized the optimizer * minor code cleanup * first steps to .cursor inference * cursor inference: big steps to a working solution * baby steps * better .cursor inference * new feature: expandArc for easy inspection of the AST after ARC transformations * added topt_cursor test * adapt tests * cleanups, make tests green * optimize common traversal patterns * moved test case * fixes .cursor inference so that npeg compiles once again * cursor inference: more bugfixes Co-authored-by: Clyybber <darkmine956@gmail.com>
* | repr_v2 improvements (#14992)Clyybber2020-07-152-10/+34
| | | | | | | | | | | | | | * Support proc in arc repr * Typo * Improve repr for strings and chars
* | Fix #14990 (#14991)Clyybber2020-07-152-2/+13
| | | | | | | | | | * Fix #14990 * Add testcase
* | Fix #14985 (#14988)Clyybber2020-07-152-2/+32
| |
* | fix #13086 (#14987)flywind2020-07-152-2/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix #6608 * minor * fix * clean tests * make testamnet happy * again * minor * fix #13086
* | Reenable a few testsClyybber2020-07-144-10/+7
| |
* | Closes #10396Clyybber2020-07-141-0/+55
| |
* | Closes #13253Clyybber2020-07-141-0/+31
| |
* | Closes #8426Clyybber2020-07-141-0/+14
| |
* | Clean up macros (#14959)Juan Carlos2020-07-148-43/+6
| |
* | injectdestructors fixes and refactor (#14964)Clyybber2020-07-146-198/+317
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * injectdestructors fixes and refactor * Tiny cleanup * Refactor and expand testcase * Closes #14902 by adding testcase * Better naming * Fix test failures * Misc cleanup * Add testcase for #14968 * Better approach; expand testcases * Optimizations and fixes * Add testcase * typo * Tiny cleanup
* | add missing props,procs (#14978)Bung2020-07-141-0/+12
| |
* | fix index error (#14974)Hendrik2020-07-141-1/+2
| | | | | | Co-authored-by: Hendrik Albers <mail@hendrik.dev>
* | fix #14475; unittest.require now works with `nim c`; require and check now ↵Timothee Cour2020-07-146-13/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | works with -d:nodejs (#14676) * fix #14475; make unittest work with -d:nodejs * fixup * fixup * disable inim, delaunay which failed after unittest.require got fixed * re-enable tests that have been fixed
* | add full tests from #9463 (#14975)jcosborn2020-07-141-11/+161
| |
* | fix #6608 (#14963)flywind2020-07-142-1/+26
| | | | | | | | * fix #6608
* | asyncftpclient.nim - don't assume a sufficiend line length (#14973)Miran2020-07-141-1/+1
| |
* | optimize the new nimPrepareStrMutationV2 with inlining (#14969)Andreas Rumpf2020-07-121-6/+9
| |
* | nimpretty support for multiple files (#14890)Alexander Wolfe2020-07-122-16/+65
| |
* | Fix #12759 (#14967)flywind2020-07-122-1/+11
| | | | | | | | | | * add testcase for #5926 * fix #12759
* | :DClyybber2020-07-111-0/+0
| |
* | add testcase for #5926 (#14965)flywind2020-07-111-0/+22
| |
* | https://github.com/nim-lang/Nim/pull/14948#issuecomment-656498426 (#14958)Juan Carlos2020-07-111-1/+1
| |
* | Add testcase for some old fixed issues (#14960)Clyybber2020-07-102-0/+18
| | | | | | | | | | | | | | * Add testcase for #2703 * Add testcase for #2586 * Small fix
key@invisible-island.net> 2007-05-06 22:23:52 -0400 committer Thomas E. Dickey <dickey@invisible-island.net> 2007-05-06 22:23:52 -0400 snapshot of project "lynx", label v2-8-7dev_4d' href='/ingrix/lynx-snapshots/commit/src/LYCurses.h?id=741e82fc69b69a3bfc14f33f33766a89cea4df42'>741e82fc ^
967f9ea5 ^





2a786b26 ^

fc99820d ^
2a786b26 ^










533c7482 ^








50f9f94b ^



533c7482 ^

50f9f94b ^
533c7482 ^
3f6f7118 ^

1fc1d8af ^


3f6f7118 ^
d326f24d ^
f78e2771 ^
e47cfd56 ^
1fc1d8af ^

d326f24d ^
3f6f7118 ^
1fc1d8af ^
3f6f7118 ^
1fc1d8af ^

e087f6d4
4c510de6 ^


22088334 ^
4c510de6 ^

22088334 ^
4c510de6 ^

22088334 ^
4c510de6 ^

e087f6d4
50f9f94b ^
1fc1d8af ^
d326f24d ^
50f9f94b ^





1fc1d8af ^
50f9f94b ^
22088334 ^
d326f24d ^

1fc1d8af ^



22088334 ^

0cb11571 ^

6bbc5d0b ^

0cb11571 ^

6bbc5d0b ^

0cb11571 ^

741e82fc ^




e087f6d4


1fc1d8af ^
e087f6d4

1fc1d8af ^
e087f6d4


1fc1d8af ^
e087f6d4
36863953 ^
d326f24d ^

36863953 ^


d326f24d ^
36863953 ^

d326f24d ^
36863953 ^

ab8b1f12 ^
d326f24d ^
ab8b1f12 ^

1fc1d8af ^

2a786b26 ^
ff34560f ^












01876e39 ^


ff34560f ^
01876e39 ^
ff34560f ^



2a786b26 ^
1fc1d8af ^




d326f24d ^
2a786b26 ^

d1349dd6 ^


2a786b26 ^
e087f6d4
1fc1d8af ^










1367261d ^
1fc1d8af ^







2b52e9e6 ^
2a786b26 ^
e087f6d4

1fc1d8af ^






e087f6d4
945e8eb6 ^
1fc1d8af ^





d326f24d ^
d1349dd6 ^



1fc1d8af ^
945e8eb6 ^
0cb11571 ^
1fc1d8af ^


a8251776 ^
e4409c40 ^

c6cec39a ^



e4409c40 ^
2d161b7d ^
d3f9d547 ^
945e8eb6 ^
112f25f7 ^
d3f9d547 ^

ab1d1ae5 ^
d3f9d547 ^

116ac693 ^
e087f6d4
d1349dd6 ^
d3f9d547 ^
7352a91b ^
0cb11571 ^
7352a91b ^

0cb11571 ^
7352a91b ^
e087f6d4


1fc1d8af ^
e087f6d4
57bfc74f ^


fc99820d ^
e4409c40 ^
1fc1d8af ^
d326f24d ^
e4409c40 ^

6bd78b38 ^
1fc1d8af ^
6bd78b38 ^


1fc1d8af ^
d326f24d ^
b63d287c ^

6bd78b38 ^


86b4d41a ^




6bd78b38 ^
86b4d41a ^

2a786b26 ^
01876e39 ^









fe769404 ^




04a31662 ^
01876e39 ^
6bd78b38 ^
fe769404 ^
86b4d41a ^
1fc1d8af ^

d326f24d ^
e087f6d4

1fc1d8af ^
e087f6d4
1fc1d8af ^
d326f24d ^
e087f6d4

1fc1d8af ^
e087f6d4


1fc1d8af ^
d326f24d ^
2a786b26 ^
6bd78b38 ^

1fc1d8af ^
e087f6d4
1fc1d8af ^
e087f6d4

2d161b7d ^
e087f6d4

57bfc74f ^




7352a91b ^



57bfc74f ^
2a786b26 ^
57bfc74f ^
2a786b26 ^
e087f6d4
1fc1d8af ^
e087f6d4
1fc1d8af ^
affaa4f7 ^
57bfc74f ^




a8251776 ^
1fc1d8af ^



d326f24d ^
e4409c40 ^
57bfc74f ^
e4409c40 ^
57bfc74f ^
e4409c40 ^
2a786b26 ^



e4409c40 ^

a8251776 ^







7352a91b ^



a2a1ab1e ^
e087f6d4
2a786b26 ^



e087f6d4
57bfc74f ^
2a786b26 ^
57bfc74f ^
2a786b26 ^
1fc1d8af ^
a2a1ab1e ^
1fc1d8af ^
e087f6d4
1fc1d8af ^
d326f24d ^
0bafa3a3 ^






d326f24d ^
0bafa3a3 ^
57bfc74f ^




86b4d41a ^
549ec595 ^
57bfc74f ^

86b4d41a ^
549ec595 ^
57bfc74f ^

e087f6d4
1fc1d8af ^
fe769404 ^
50f9f94b ^









d1349dd6 ^














50f9f94b ^







2a786b26 ^


fe769404 ^
1fc1d8af ^
e087f6d4
57bfc74f ^



2a786b26 ^
57bfc74f ^
2a786b26 ^
1fc1d8af ^

57bfc74f ^
c68ecb8b ^
50f9f94b ^
c68ecb8b ^

6cb04c09 ^
0cb11571 ^
c68ecb8b ^



1fc1d8af ^
























7352a91b ^
d3f9d547 ^







a2a1ab1e ^
244b955f ^
d3f9d547 ^
d326f24d ^
d3f9d547 ^




d326f24d ^
d3f9d547 ^

9c512bba ^




ff34560f ^
1367261d ^

9c512bba ^

1fc1d8af ^
387b9cbf ^
3f6f7118 ^
1fc1d8af ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814