File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -121,10 +121,10 @@ function FormatSpec(s::String)
121
121
if a4[1 ] == ' 0'
122
122
_zpad = true
123
123
if length (a4) > 1
124
- _width = parseint (Int,a4[2 : end ])
124
+ _width = parse (Int,a4[2 : end ])
125
125
end
126
126
else
127
- _width = parseint (Int,a4)
127
+ _width = parse (Int,a4)
128
128
end
129
129
end
130
130
@@ -135,7 +135,7 @@ function FormatSpec(s::String)
135
135
136
136
# a6 [.prec]
137
137
if a6 != nothing
138
- _prec = parseint (Int,a6[2 : end ])
138
+ _prec = parse (Int,a6[2 : end ])
139
139
end
140
140
141
141
# a7: [type]
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ function make_argspec(s::String, pos::Int)
28
28
if ! isempty (s)
29
29
ifil = searchindex (s, " |>" )
30
30
if ifil == 0
31
- iarg = parseint (Int,s)
31
+ iarg = parse (Int,s)
32
32
else
33
- iarg = ifil > 1 ? parseint (Int,s[1 : ifil- 1 ]) : - 1
33
+ iarg = ifil > 1 ? parse (Int,s[1 : ifil- 1 ]) : - 1
34
34
hasfil = true
35
35
ff = eval (symbol (s[ifil+ 2 : end ]))
36
36
end
You can’t perform that action at this time.
0 commit comments