Skip to content

Commit e8a3b0f

Browse files
Merge pull request #580 from loladiro/hotfix-577
Temporary workaround for #577
2 parents 82a8dcf + 6d69377 commit e8a3b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jl/string.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ print(x...) = for i=x; print(i); end
2323
println(args...) = print(args..., '\n')
2424

2525
show(s::String) = print_quoted(s)
26-
showln(x) = (show(x); println())
2726

2827
(*)(s::String...) = strcat(s...)
2928
(^)(s::String, r::Integer) = repeat(s,r)
3029

30+
3131
size(s::String) = (length(s),)
3232
size(s::String, d::Integer) = d==1 ? length(s) :
3333
error("in size: dimension ",d," out of range")

0 commit comments

Comments
 (0)