Gbp-Pq: Topic debian-hacks
Gbp-Pq: Name Allow-to-build-oxilangtag-ffi-with-rustc-1.65.patch
loop {
// 4. When the language range's list has no more subtags, the match
// succeeds.
- let Some(range_subtag_str) = range_subtag else {
+ let range_subtag_str = if let Some(range_subtag_str) = range_subtag {
+ range_subtag_str
+ } else {
return true;
};
// B. Else, if there are no more subtags in the language tag's
// list, the match fails.
- let Some(lang_subtag_str) = lang_subtag else {
+ let lang_subtag_str = if let Some(lang_subtag_str) = lang_subtag {
+ lang_subtag_str
+ } else {
return false;
};