mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #11786 - notriddle:cleanup, r=jdm
Alignment is wrong. Fix off-alignment. --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes do not fix any particular issue number - [X] These changes do not require tests because refactoring <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11786) <!-- Reviewable:end -->
This commit is contained in:
commit
2cea4187fc
1 changed files with 7 additions and 7 deletions
|
@ -233,13 +233,13 @@ impl TextRunScanner {
|
||||||
|
|
||||||
if flush_mapping {
|
if flush_mapping {
|
||||||
mapping.flush(&mut mappings,
|
mapping.flush(&mut mappings,
|
||||||
&mut run_info,
|
&mut run_info,
|
||||||
&**text,
|
&**text,
|
||||||
compression,
|
compression,
|
||||||
text_transform,
|
text_transform,
|
||||||
&mut last_whitespace,
|
&mut last_whitespace,
|
||||||
&mut start_position,
|
&mut start_position,
|
||||||
end_position);
|
end_position);
|
||||||
if run_info.text.len() > 0 {
|
if run_info.text.len() > 0 {
|
||||||
if flush_run {
|
if flush_run {
|
||||||
run_info.flush(&mut run_info_list, &mut insertion_point);
|
run_info.flush(&mut run_info_list, &mut insertion_point);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue