toml: deprecate input.auto_config() and toml.parse() (#13770)

This commit is contained in:
Larpon 2022-03-18 21:33:51 +01:00 committed by GitHub
parent 3e41be1ff4
commit 156efec278
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 50 additions and 22 deletions

View file

@ -84,7 +84,7 @@ pub fn decode_quoted_escapes(mut q ast.Quoted) ? {
return
}
mut s := scanner.new_simple(q.text) ?
mut s := scanner.new_simple_text(q.text) ?
q.text = q.text.replace('\\"', '"')
for {