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: jruby/joni
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: airlift/joni
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 17 commits
  • 12 files changed
  • 3 contributors

Commits on Apr 20, 2015

  1. Fix char class casefold for certain chars

    When a character is less than or equal to single byte size (0xff),
    yet it takes more than 1 byte in the current encoding, the
    case folding code incorrectly put it in bitset instead of code
    range. As a result, for utf8 encoding, casefold works incorrectly
    on characters in range \u0080 to \u00ff (latin1 supplement).
    
    Before fix:
    
    * `"\u00c2"` `[\u00e0-\u00e5]` returns false
    * `"\u00c2"` `[\u00e2]` returns false
    * `"\u00c2"` `\u00e2` returns true
    haozhun committed Apr 20, 2015
    Copy the full SHA
    c703f2a View commit details

Commits on Apr 21, 2015

  1. Copy the full SHA
    7b2fc9e View commit details
  2. Add flags for \x{7HHHHHHH} to Java syntax

    haozhun authored and cberner committed Apr 21, 2015
    Copy the full SHA
    389f2bb View commit details

Commits on Apr 22, 2015

  1. Copy the full SHA
    807c625 View commit details

Commits on Apr 23, 2015

  1. Copy the full SHA
    9d25186 View commit details
  2. Copy the full SHA
    f6fe7a4 View commit details

Commits on Apr 25, 2015

  1. Copy the full SHA
    4eaa964 View commit details
  2. Copy the full SHA
    e8a96ae View commit details
  3. Copy the full SHA
    ba9950f View commit details

Commits on Feb 28, 2019

  1. fix for word bounds

    lopex authored and electrum committed Feb 28, 2019
    Copy the full SHA
    64bcdcb View commit details
  2. test cases to word bounds

    lopex authored and electrum committed Feb 28, 2019
    Copy the full SHA
    9f12eb9 View commit details
  3. Copy the full SHA
    0a331dc View commit details
  4. Copy the full SHA
    aebd605 View commit details

Commits on Apr 5, 2019

  1. fix word bound regression

    lopex authored and electrum committed Apr 5, 2019
    Copy the full SHA
    9b7b700 View commit details
  2. test for word bound regression

    lopex authored and electrum committed Apr 5, 2019
    Copy the full SHA
    8064187 View commit details
  3. Copy the full SHA
    2f7697c View commit details
  4. Copy the full SHA
    daf2064 View commit details
Loading