summaryrefslogtreecommitdiff
path: root/unidata
diff options
context:
space:
mode:
authorbehdad <behdad>2001-03-28 02:43:21 +0000
committerbehdad <behdad>2001-03-28 02:43:21 +0000
commitd4721836cdc90eafd3d0c03c10ff50d5fcf99a5c (patch)
treefd2ba11fdb568aa52b22425fa76b5701b11ec0ba /unidata
parentd30a0e26fe88731aef3959fa9158cce818078de6 (diff)
MEM_OPTIMIZED option, fribidi_tables.i target and some more small changes
Diffstat (limited to 'unidata')
-rwxr-xr-xunidata/CreateGetType.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/unidata/CreateGetType.pl b/unidata/CreateGetType.pl
index 28aad0e..e4fd563 100755
--- a/unidata/CreateGetType.pl
+++ b/unidata/CreateGetType.pl
@@ -207,7 +207,7 @@ sub split_entity {
sub create_block {
my ($block,$name, $ranges) = @_;
my($title) = <<__;
-FriBidiCharType ${name}\[256\] = {
+FriBidiPropCharType ${name}\[256\] = {
__
my $result;
my $last_type=$ranges->[0]->[2];
@@ -258,13 +258,13 @@ sub create_c_file {
__
for my $type (keys %type_names) {
- $c_file .= "#define $type_names{$type}->[0] FRIBIDI_TYPE_$type_names{$type}->[0]\n";
+ $c_file .= "#define $type_names{$type}->[0] FRIBIDI_PROP_TYPE_$type_names{$type}->[0]\n";
}
$c_file .= "\n\n";
my $i = 0;
my $block_array = <<__;
-FriBidiCharType *FriBidiPropertyBlocks[256] = {
+FriBidiPropCharType *FriBidiPropertyBlocks[256] = {
__
my %seen_blocks;