replacing sub's that can wrap by saturating_sub's
This commit is contained in:
parent
94b4de0e07
commit
439b766161
1 changed files with 3 additions and 3 deletions
|
@ -959,15 +959,15 @@ impl EmitterWriter {
|
||||||
'_',
|
'_',
|
||||||
line_offset + pos,
|
line_offset + pos,
|
||||||
width_offset + depth,
|
width_offset + depth,
|
||||||
code_offset + annotation.start_col - left,
|
(code_offset + annotation.start_col).saturating_sub(left),
|
||||||
style,
|
style,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
_ if self.teach => {
|
_ if self.teach => {
|
||||||
buffer.set_style_range(
|
buffer.set_style_range(
|
||||||
line_offset,
|
line_offset,
|
||||||
code_offset + annotation.start_col - left,
|
(code_offset + annotation.start_col).saturating_sub(left),
|
||||||
code_offset + annotation.end_col - left,
|
(code_offset + annotation.end_col).saturating_sub(left),
|
||||||
style,
|
style,
|
||||||
annotation.is_primary,
|
annotation.is_primary,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue