| author | |
| committer | |
| log | abd610c01689a255be37ac5c95952be29896dbc5 |
| tree | 24be5c29326925902350d19147bb05387b1f94ed |
| parent | dc368a6ed329e42436cc2d3d0b6aca30ac8c81b8 |
4 files changed, 4 insertions(+), 4 deletions(-)
generate.zig+1-1| ... | ... | @@ -8,6 +8,6 @@ const files = [_]type{ |
| 8 | 8 | |
| 9 | 9 | pub fn main() !void { |
| 10 | 10 | inline for (files) |f| { |
| 11 | try f.default.do(); | |
| 11 | try f.do(); | |
| 12 | 12 | } |
| 13 | 13 | } |
scripts/arabic_shaping.zig+1-1| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const common = @import("./_common.zig"); |
| 3 | 3 | |
| 4 | pub const default = common.Main(struct { | |
| 4 | pub usingnamespace common.Main(struct { | |
| 5 | 5 | pub const source_url = "https://unicode.org/Public/" ++ common.version ++ "/ucd/ArabicShaping.txt"; |
| 6 | 6 | |
| 7 | 7 | pub const dest_file = "src/arabic_shaping.zig"; |
scripts/bidi_brackets.zig+1-1| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const common = @import("./_common.zig"); |
| 3 | 3 | |
| 4 | pub const default = common.Main(struct { | |
| 4 | pub usingnamespace common.Main(struct { | |
| 5 | 5 | pub const source_url = "https://unicode.org/Public/" ++ common.version ++ "/ucd/BidiBrackets.txt"; |
| 6 | 6 | |
| 7 | 7 | pub const dest_file = "src/bidi_brackets.zig"; |
scripts/blocks.zig+1-1| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const common = @import("./_common.zig"); |
| 3 | 3 | |
| 4 | pub const default = common.Main(struct { | |
| 4 | pub usingnamespace common.Main(struct { | |
| 5 | 5 | pub const source_url = "https://unicode.org/Public/" ++ common.version ++ "/ucd/Blocks.txt"; |
| 6 | 6 | |
| 7 | 7 | pub const dest_file = "src/blocks.zig"; |