Skip to content

Commit

Permalink
work around JuliaLang/julia#7416
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jun 25, 2014
1 parent 4474f4f commit 0f038d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JSON.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import .Parser.parse

const INDENT=true
const NOINDENT=false
const unescaped = Bool[isprint(c) && !(c in ['\\','"']) for c in '\x00':'\x7F']
const unescaped = Bool[isprint(c) && !iscntrl(c) && !(c in ['\\','"']) for c in '\x00':'\x7F']

type State{I}
indentstep::Int
Expand Down

0 comments on commit 0f038d9

Please sign in to comment.