Skip to content

Commit bb7d437

Browse files
authored
Merge pull request #179 from epage/trailing
fix: Remove trailing pipe
2 parents 32dc464 + 41825aa commit bb7d437

23 files changed

+43
-161
lines changed

examples/expected_type.svg

+2-4
Loading

examples/footer.svg

+4-6
Loading

examples/format.svg

+2-4
Loading

examples/multislice.svg

+5-9
Loading

src/renderer/display_list.rs

+1-21
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
//! 152 | | return "test";
2121
//! 153 | | }
2222
//! | |___^ error: expected `String`, for `&str`.
23-
//! |
2423
//! ```
2524
//!
2625
//! The first two lines of the example above are `Raw` lines, while the rest
@@ -325,7 +324,7 @@ impl DisplaySet<'_> {
325324
}
326325

327326
let text = normalize_whitespace(text);
328-
let line_len = text.as_bytes().len();
327+
let line_len = text.len();
329328
let left = self.margin.left(line_len);
330329
let right = self.margin.right(line_len);
331330

@@ -1013,7 +1012,6 @@ fn format_message(
10131012
sets.push(format_snippet(
10141013
snippet,
10151014
idx == 0,
1016-
!footer.is_empty(),
10171015
term_width,
10181016
anonymized_line_numbers,
10191017
));
@@ -1092,7 +1090,6 @@ fn format_label(
10921090
fn format_snippet(
10931091
snippet: snippet::Snippet<'_>,
10941092
is_first: bool,
1095-
has_footer: bool,
10961093
term_width: usize,
10971094
anonymized_line_numbers: bool,
10981095
) -> DisplaySet<'_> {
@@ -1102,7 +1099,6 @@ fn format_snippet(
11021099
let mut body = format_body(
11031100
snippet,
11041101
need_empty_header,
1105-
has_footer,
11061102
term_width,
11071103
anonymized_line_numbers,
11081104
);
@@ -1290,7 +1286,6 @@ fn fold_body(body: Vec<DisplayLine<'_>>) -> Vec<DisplayLine<'_>> {
12901286
fn format_body(
12911287
snippet: snippet::Snippet<'_>,
12921288
need_empty_header: bool,
1293-
has_footer: bool,
12941289
term_width: usize,
12951290
anonymized_line_numbers: bool,
12961291
) -> DisplaySet<'_> {
@@ -1605,21 +1600,6 @@ fn format_body(
16051600
);
16061601
}
16071602

1608-
if has_footer {
1609-
body.push(DisplayLine::Source {
1610-
lineno: None,
1611-
inline_marks: vec![],
1612-
line: DisplaySourceLine::Empty,
1613-
annotations: vec![],
1614-
});
1615-
} else if let Some(DisplayLine::Source { .. }) = body.last() {
1616-
body.push(DisplayLine::Source {
1617-
lineno: None,
1618-
inline_marks: vec![],
1619-
line: DisplaySourceLine::Empty,
1620-
annotations: vec![],
1621-
});
1622-
}
16231603
let max_line_num_len = if anonymized_line_numbers {
16241604
ANONYMIZED_LINE_NUM.len()
16251605
} else {

tests/fixtures/color/ann_eof.svg

+1-3
Loading

tests/fixtures/color/ann_insertion.svg

+1-3
Loading

tests/fixtures/color/ann_multiline.svg

+1-3
Loading

tests/fixtures/color/ann_multiline2.svg

+1-3
Loading

tests/fixtures/color/ann_removed_nl.svg

+1-3
Loading

tests/fixtures/color/ensure-emoji-highlight-width.svg

+1-3
Loading

tests/fixtures/color/fold_ann_multiline.svg

+1-3
Loading

tests/fixtures/color/fold_bad_origin_line.svg

+1-3
Loading

tests/fixtures/color/fold_leading.svg

+1-3
Loading

tests/fixtures/color/fold_trailing.svg

+1-3
Loading

tests/fixtures/color/issue_9.svg

+5-11
Loading

tests/fixtures/color/multiple_annotations.svg

+1-3
Loading

tests/fixtures/color/simple.svg

+1-3
Loading

tests/fixtures/color/strip_line.svg

+1-3
Loading

tests/fixtures/color/strip_line_char.svg

+1-3
Loading

0 commit comments

Comments
 (0)