diff options
author | Doug Felt <dougfelt@google.com> | 2016-05-10 12:50:25 -0700 |
---|---|---|
committer | Doug Felt <dougfelt@google.com> | 2016-05-10 12:50:25 -0700 |
commit | 3a64f8140c23eacc47978ade4c213ae43cca6541 (patch) | |
tree | 7464e504782a3357648b365235abb746a5a9c355 /tools/fonts | |
parent | 6e2b3d158a333b8754854314af0fc865a1f8bc5e (diff) |
Remove rifle (1F946) from emoji font.
Bug: 28678310
Change-Id: I60097cd78f28764d83abe0d12b53e2a7e6c974dc
Diffstat (limited to 'tools/fonts')
-rwxr-xr-x | tools/fonts/fontchain_lint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/fonts/fontchain_lint.py b/tools/fonts/fontchain_lint.py index fe7c3b9b400f..ea36e2cb0d6a 100755 --- a/tools/fonts/fontchain_lint.py +++ b/tools/fonts/fontchain_lint.py @@ -412,8 +412,9 @@ def parse_ucd(ucd_path): path.join(ucd_path, 'emoji-zwj-sequences.txt')) # filter modern pentathlon, as it seems likely to be removed from final spec + # also filter rifle def is_excluded(n): - return n == 0x1f93b + return n in [0x1f93b, 0x1f946] def contains_excluded(t): if type(t) == int: |