Skip to content

Commit b2c4de6

Browse files
committed
change ::ByteString to ::String in a few places now that bytestring is called automatically (#5677)
1 parent 638572d commit b2c4de6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

base/libc.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ type TmStruct
3434
end
3535

3636
strftime(t) = strftime("%c", t)
37-
strftime(fmt::ByteString, t::Real) = strftime(fmt, TmStruct(t))
38-
function strftime(fmt::ByteString, tm::TmStruct)
37+
strftime(fmt::String, t::Real) = strftime(fmt, TmStruct(t))
38+
function strftime(fmt::String, tm::TmStruct)
3939
timestr = Array(Uint8, 128)
4040
n = ccall(:strftime, Int, (Ptr{Uint8}, Int, Ptr{Uint8}, Ptr{Void}),
4141
timestr, length(timestr), fmt, &tm)
@@ -45,8 +45,8 @@ function strftime(fmt::ByteString, tm::TmStruct)
4545
bytestring(convert(Ptr{Uint8},timestr))
4646
end
4747

48-
strptime(timestr::ByteString) = strptime("%c", timestr)
49-
function strptime(fmt::ByteString, timestr::ByteString)
48+
strptime(timestr::String) = strptime("%c", timestr)
49+
function strptime(fmt::String, timestr::String)
5050
tm = TmStruct()
5151
r = ccall(:strptime, Ptr{Uint8}, (Ptr{Uint8}, Ptr{Uint8}, Ptr{Void}),
5252
timestr, fmt, &tm)

base/loading.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ end
8686

8787
# remote/parallel load
8888

89-
include_string(txt::ByteString, fname::ByteString) =
89+
include_string(txt::String, fname::String) =
9090
ccall(:jl_load_file_string, Any, (Ptr{Uint8},Ptr{Uint8}), txt, fname)
9191

92-
include_string(txt::ByteString) = include_string(txt, "string")
92+
include_string(txt::String) = include_string(txt, "string")
9393

9494
function source_path(default::Union(String,Nothing)="")
9595
t = current_task()

base/util.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ end
249249
end
250250

251251
@windows_only begin
252-
function clipboard(x::ByteString)
252+
function clipboard(x::String)
253253
ccall((:OpenClipboard, "user32"), stdcall, Bool, (Ptr{Void},), C_NULL)
254254
ccall((:EmptyClipboard, "user32"), stdcall, Bool, ())
255255
p = ccall((:GlobalAlloc, "kernel32"), stdcall, Ptr{Void}, (Uint16,Int32), 2, length(x)+1)

0 commit comments

Comments
 (0)