summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* proper fixnarimiran2019-03-261-1/+1
* fix nim-chronicles test: there is a new dependencynarimiran2019-03-261-1/+1
* fixes #10904Araq2019-03-261-3/+6
* disable testing of nim-chronicles until is fixednarimiran2019-03-261-1/+1
* add NimFrameFilter to nim-gdb.py (#10873)Arne Döring2019-03-261-0/+16
* fixes 'nimble install nimble' problemsAndreas Rumpf2019-03-261-2/+3
* macros: typoAndreas Rumpf2019-03-261-1/+1
* fixes #10896 (#10903)Andreas Rumpf2019-03-252-1/+8
* newruntime: bugfixesAndreas Rumpf2019-03-253-2/+8
* logging: better documentation (#10895)Jjp1372019-03-241-94/+572
* stats.nim: bugfix: use min in '+' [backport]Andreas Rumpf2019-03-231-1/+1
* fixes #8202 (#10888)Andreas Rumpf2019-03-232-1/+27
* improvements on the hot code reloading support (#10892)Viktor Kirilov2019-03-237-16/+42
* fixes #10886 [backport] (#10897)Andreas Rumpf2019-03-232-7/+34
* system.nim: documentation improvementsAndreas Rumpf2019-03-232-20/+22
* add short overview of the system module (#10883)Miran2019-03-232-24/+223
* more destructor based changes (#10885)Andreas Rumpf2019-03-2339-244/+445
* Add OpenMP overload with stepping (#10891)Mamy Ratsimbazafy2019-03-223-5/+35
* fixes #10884 (#10887)Andreas Rumpf2019-03-221-1/+1
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2019-03-2116-25/+75
|\
| * add condition for szUnknown (#10869)Arne Döring2019-03-211-2/+2
| * Lineinfo fix (#10871)Arne Döring2019-03-213-1/+20
| * use abort instead of quit (#10872)Arne Döring2019-03-212-5/+9
| * fixes #10861 (#10877)cooldome2019-03-212-3/+18
| * REVERT "optPar"Andrii Riabushenko2019-03-211-3/+2
| * optParAndrii Riabushenko2019-03-211-2/+3
| * increase VM limit (#10870)cooldome2019-03-201-1/+1
| * docgen: add links for var, let and const (refs #10487) (#10868)Miran2019-03-202-4/+4
| * improve docs for os.joinPath, fixes #10836 (#10866)Miran2019-03-201-2/+7
| * live with the hacks, PCRE's design is crapAraq2019-03-193-5/+6
| * docgen: generate pragma after generic, fixes #10792 (#10865)Miran2019-03-191-2/+8
* | fixes -d:nimTypeNames leak detection regressionAndreas Rumpf2019-03-211-4/+4
|/
* pcre.nim: added pcre_free and removed hacks in nre and re.nimAndreas Rumpf2019-03-193-6/+5
* mark user defined destructors with sfOverriden to simplify the logicAndreas Rumpf2019-03-191-0/+3
* add tastspec (and ast_pattern_matching) (#10863)Arne Döring2019-03-192-0/+1600
* fixes #10857 invisible span had width (#10860)Anthon van der Neut2019-03-194-13/+29
* sizeof alignof offsetof macros api (#10855)Arne Döring2019-03-197-1/+93
* Fix nightlies :test: snippet issue (#10862)genotrance2019-03-191-1/+1
* Size ptr tuple (#10846)Arne Döring2019-03-188-10/+153
* correct argument name, (#10813)Anthon van der Neut2019-03-181-1/+2
* Support for stmtListExpr in parser after major keywords. Scaled down version....cooldome2019-03-184-12/+54
* fixes #10838 (#10841)cooldome2019-03-182-0/+16
* multi-methods need to be explicitly enabled (#10856)Miran2019-03-188-7/+36
* Merge pull request #10850 from FedericoCeratto/egress-ipaddrDominik Picheta2019-03-173-0/+44
|\
| * Detect local "primary" IP addressFederico Ceratto2019-03-173-0/+44
|/
* make DLLs tests green againAndreas Rumpf2019-03-151-1/+1
* newruntime: progressAndreas Rumpf2019-03-152-12/+10
* fixes #10845Andreas Rumpf2019-03-151-15/+20
* rename for code clarityAndreas Rumpf2019-03-151-5/+5
* newruntime: make dynamic destructors compatible with C++Andreas Rumpf2019-03-152-3/+4
n554'>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 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877