Skip to content

Commit

Permalink
fix jl_show_svec for rebase of jb/curlyunion branch
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed May 25, 2015
1 parent ff582f8 commit d54a9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builtins.c
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@ size_t jl_static_show_x(JL_STREAM *out, jl_value_t *v, int depth)
n += jl_static_show_x(out, (jl_value_t*)li->module, depth);
if (li->specTypes) {
n += jl_printf(out, ".");
n += jl_show_svec(out, li->specTypes->parameters, li->name->name);
n += jl_show_svec(out, li->specTypes->parameters, li->name->name, "(", ")");
}
else {
n += jl_printf(out, ".%s(?)", li->name->name);
Expand Down

0 comments on commit d54a9eb

Please sign in to comment.