Fix incorrect `MRB_STR_ASCII` flag update in `mrb_str_dump`
### Example (with `MRB_UTF8_STRING`) ```ruby s = "\u3042" p s.size s.dump p s.size ``` #### Before this patch: ``` 1 3 ``` #### After this patch: ``` 1 1 ```
Showing
Please register or sign in to comment