~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to src/builtins.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-02-11 03:51:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130211035126-hap464pbhd97wjbl
Tags: 0.1~20130211.git86fbe98d-1
* New upstream snapshot.
* debian/control:
   + add git to Recommends (for Julia package manager)
   + remove dependencies on libglpk-dev (it moved to its own package)
   + add explicit dependency on libgmp10 (there is no more a wrapper)
* fix-clean-rules.patch: remove patch, applied upstream
* gsvddense_blasint.patch: new patch
* Refresh other patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
592
592
        JL_PUTS(jl_gf_name(v)->name, s);
593
593
    }
594
594
    else {
595
 
        JL_PUTS("#<function>", s);
 
595
        JL_PUTS("# function", s);
596
596
    }
597
597
}
598
598
 
642
642
        show_function(s, v);
643
643
    }
644
644
    else if (jl_typeis(v,jl_intrinsic_type)) {
645
 
        JL_PRINTF(s, "#<intrinsic-function %d>", *(uint32_t*)jl_bits_data(v));
 
645
        JL_PRINTF(s, "# intrinsic function %d", *(uint32_t*)jl_bits_data(v));
646
646
    }
647
647
    else {
648
648
        jl_value_t *t = (jl_value_t*)jl_typeof(v);