Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.8
Choose a base ref
...
head repository: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.9
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Feb 24, 2020

  1. Don't escape_default all non-ascii text

    Using escape_debug instead of escape_default matches the behavior of
    libproc_macro for:
    
        println!("{:#?}", "///こんにちは世界".parse::<TokenStream>().unwrap());
    
    Before: "\u{3053}\u{3093}\u{306b}\u{3061}\u{306f}\u{4e16}\u{754c}"
    After: "こんにちは世界"
    dtolnay committed Feb 24, 2020
    Configuration menu
    Copy the full SHA
    8da6698 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #215 from alexcrichton/escape

    Don't escape_default all non-ascii text
    dtolnay authored Feb 24, 2020
    Configuration menu
    Copy the full SHA
    ff2fc3c View commit details
    Browse the repository at this point in the history
  3. Release 1.0.9

    dtolnay committed Feb 24, 2020
    Configuration menu
    Copy the full SHA
    b7daef7 View commit details
    Browse the repository at this point in the history
Loading