diff options
| author | 2024-02-13 14:23:34 -0400 | |
|---|---|---|
| committer | 2024-02-13 14:23:34 -0400 | |
| commit | 005f2a30036ca5328ae0fffcd61749f2de2d0a7c (patch) | |
| tree | f502f0d9f5979d34158b8632c1fa3c6a18872a28 /src/Grapheme.zig | |
| parent | Passing ziglyph tests (diff) | |
| download | zg-005f2a30036ca5328ae0fffcd61749f2de2d0a7c.tar.gz zg-005f2a30036ca5328ae0fffcd61749f2de2d0a7c.tar.xz zg-005f2a30036ca5328ae0fffcd61749f2de2d0a7c.zip | |
Using emoji table
Diffstat (limited to 'src/Grapheme.zig')
| -rw-r--r-- | src/Grapheme.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Grapheme.zig b/src/Grapheme.zig index 1e9606f..1165a0e 100644 --- a/src/Grapheme.zig +++ b/src/Grapheme.zig | |||
| @@ -7,9 +7,10 @@ const ziglyph = @import("ziglyph"); | |||
| 7 | const CodePoint = ziglyph.CodePoint; | 7 | const CodePoint = ziglyph.CodePoint; |
| 8 | const CodePointIterator = CodePoint.CodePointIterator; | 8 | const CodePointIterator = CodePoint.CodePointIterator; |
| 9 | const readCodePoint = CodePoint.readCodePoint; | 9 | const readCodePoint = CodePoint.readCodePoint; |
| 10 | const emoji = ziglyph.emoji; | 10 | // const emoji = ziglyph.emoji; |
| 11 | // const gbp = ziglyph.grapheme_break; | 11 | // const gbp = ziglyph.grapheme_break; |
| 12 | const gbp = @import("gbp"); | 12 | const gbp = @import("gbp"); |
| 13 | const emoji = @import("emoji"); | ||
| 13 | 14 | ||
| 14 | pub const Grapheme = @This(); | 15 | pub const Grapheme = @This(); |
| 15 | 16 | ||