mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Fix some new warnings
This commit is contained in:
parent
112f1ddeba
commit
1d38bc0419
65 changed files with 179 additions and 175 deletions
|
@ -1668,7 +1668,7 @@ pub fn is_field_value(slice: &[u8]) -> bool {
|
|||
false
|
||||
}
|
||||
},
|
||||
0...31 | 127 => false, // CTLs
|
||||
0..=31 | 127 => false, // CTLs
|
||||
x if x > 127 => false, // non ASCII
|
||||
_ if prev == PreviousCharacter::Other || prev == PreviousCharacter::SPHT => {
|
||||
prev = PreviousCharacter::Other;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue