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

Further improve space_between #120227

Merged
merged 2 commits into from
Jan 31, 2024

Commits on Jan 22, 2024

  1. Don't insert spaces before most semicolons in print_tts.

    This gives better output for code produced by proc macros.
    nnethercote committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    41e4a3e View commit details
    Browse the repository at this point in the history
  2. Fix some cases in space_between.

    There are a number of cases where we erroneously omit the space between
    two tokens, all involving an exception to a more general case. The
    affected tokens are `$`, `!`, `.`, `,`, and `let` followed by a
    parenthesis.
    
    This fixes a lot of FIXME comments.
    nnethercote committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    1fbabee View commit details
    Browse the repository at this point in the history