Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compute widths properly when displaying spans in error messages #21499

Merged
merged 1 commit into from
Feb 4, 2015

Conversation

ftxqxd
Copy link
Contributor

@ftxqxd ftxqxd commented Jan 22, 2015

Closes #8706.

let mut s = String::new();
// Skip is the number of characters we need to skip because they are
// part of the 'filename:line ' part of the previous line.
let skip = fm.name.len() + digits + 3u;
let skip = fm.name.width(false) + digits + 3u;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why false?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From the documentation: "Unicode Standard Annex #11 recommends that these characters be treated as 1 column (i.e., is_cjk = false) if the context cannot be reliably determined."

(It actually greatly varies on the font settings, so it cannot be reliably set by default.)

@ftxqxd ftxqxd force-pushed the issue-8706 branch 2 times, most recently from c187fcc to 8c7b4ad Compare January 22, 2015 09:11
try!(write!(&mut err.dst, "{}", s));
let mut s = String::from_str("^");
let count = match lastc {
// Most terminals render tabs as 8 spaces
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's not true.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As for the terminals (as opposed to editors), this might be true, though I don't have no backing data.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tab control characters are not rendered. They move the cursor to the next tab stop.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, indeed. Understood what you did mean.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I’ve adjusted this bit to assume that all tab stops are 8 spaces apart and render the span accordingly, rather than just unconditionally inserting 8 spaces.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you update this comment to refer to tabstops explicitly?

@alexcrichton
Copy link
Member

r? @huonw

@frewsxcv
Copy link
Member

It'd be nice if there was a regression test for this

@huonw
Copy link
Member

huonw commented Feb 1, 2015

I agree that it would be nice for a regression test. I think the most reliable way to test this would be a run-make test; there's already one called unicode-input which could be extended/adjusted to include this.

r=me with the comment tweak and a test.

@huonw
Copy link
Member

huonw commented Feb 3, 2015

Needs a rebase, but that test looks good, so r=me.

@ftxqxd
Copy link
Contributor Author

ftxqxd commented Feb 3, 2015

@huonw Rebased.

@huonw
Copy link
Member

huonw commented Feb 4, 2015

@bors r+ d244

bors added a commit that referenced this pull request Feb 4, 2015
@bors
Copy link
Collaborator

bors commented Feb 4, 2015

⌛ Testing commit d244f09 with merge ac134f7...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bad span computations with unicode characters, should be handling them as graphemes
7 participants