Skip to content

Commit df4d4ab

Browse files
authored
Merge pull request #7 from invenia/sm/next-continued
Change next_continued to be local
2 parents c88cdd2 + 927259a commit df4d4ab

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ os:
66
julia:
77
- 0.7
88
- 1.0
9+
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
913
notifications:
1014
email: false
1115
git:
1216
depth: 99999999
1317

14-
## uncomment the following lines to allow failures on nightly julia
15-
## (tests will run but not make your overall status red)
16-
#matrix:
17-
# allow_failures:
18-
# - julia: nightly
19-
2018
## uncomment and modify the following lines to manually install system packages
2119
#addons:
2220
# apt: # apt-get for linux

src/AbstractString.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ end
303303
return next_continued(s, i, u)
304304
end
305305

306-
function Base.next_continued(s::IOString, i::Int, u::UInt32)
306+
function next_continued(s::IOString, i::Int, u::UInt32)
307307
u < 0xc0000000 && (i += 1; @goto ret)
308308
n = ncodeunits(s)
309309
# first continuation byte

0 commit comments

Comments
 (0)