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

Avoid truncating a pattern in the middle of an UTF-8 character #1807

Merged
merged 7 commits into from
Aug 6, 2018

Commits on Jul 30, 2018

  1. Configuration menu
    Copy the full SHA
    7fb2193 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b4d9e03 View commit details
    Browse the repository at this point in the history
  3. etags: Fix off-by-one pattern-length-limit truncation

    `-1` was for stripping the newline, and has no reason to be repeated
    for truncation length as truncation occurs only if it would result in
    a strictly shorter string anyway (at most `len - 1` already).
    b4n committed Jul 30, 2018
    Configuration menu
    Copy the full SHA
    cab7995 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4f39a65 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c971a39 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2018

  1. etags: Better handling of line endings

    Value returned by `readLineFromBypassAnyway()` can end with or without
    a newline character.  Thus, make sure to handle both cases gracefully.
    
    Patch by @masatake.
    b4n committed Aug 5, 2018
    Configuration menu
    Copy the full SHA
    5d73ebe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    22b51fa View commit details
    Browse the repository at this point in the history