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

UI: Add workaround to exclude emoji from task escaping #7813

Merged
merged 1 commit into from
Feb 9, 2021

Commits on Feb 8, 2021

  1. Fix exec escaping for emoji task name

    This closes #7459.
    
    While emoji don’t actually need escaping, expanding the
    expression that enumerates all task name characters that
    don’t need escaping to include emoji is prohibitive, since
    it’s a discontinuous range. The emoji-regex project has
    such an expression and it’s 12kB.
    
    This fixes the regular expression to property escape emoji
    as a single character instead of as its component bytes.
    Thanks to @DingoEatingFuzz for the suggestion.
    backspace committed Feb 8, 2021
    Configuration menu
    Copy the full SHA
    c3e55c1 View commit details
    Browse the repository at this point in the history