diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-31 06:56:16 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-31 06:56:16 +0000 |
commit | c06658feba7ae82e175bac72f241029276e715a0 (patch) | |
tree | 1f3a28b4db912f15c3b1d5e54f10bec82ee6fe34 /ext/json/parser | |
parent | 64e0cae2741c501e8558966096b4b139d945ca82 (diff) |
* ext/json: Merge json gem v1.5.4 (3dab4c5a6a97fac03dac).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json/parser')
-rw-r--r-- | ext/json/parser/parser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/json/parser/parser.c b/ext/json/parser/parser.c index 4ea663c721..d1d14c79ca 100644 --- a/ext/json/parser/parser.c +++ b/ext/json/parser/parser.c @@ -1618,6 +1618,9 @@ static VALUE convert_encoding(VALUE source) * defaults to true. * * *object_class*: Defaults to Hash * * *array_class*: Defaults to Array + * * *quirks_mode*: Enables quirks_mode for parser, that is for example + * parsing single JSON values instead of documents is possible. + * */ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self) { |