summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2019-06-10 19:06:14 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-06-10 19:06:14 +0200
commit682a91f81df7cb807cd05a3bc45e9f19584eaac5 (patch)
tree2ffaf8923daf3243e8b8338932631d19be35a593 /tools
parent281ebe7d403b4446eb7f733aa35348ace85b1a6e (diff)
downloadglibmm-682a91f81df7cb807cd05a3bc45e9f19584eaac5.tar.gz
gmmproc: Don't assume that enumerators can't contain lowercase letters
Diffstat (limited to 'tools')
-rw-r--r--tools/pm/Enum.pm14
1 files changed, 8 insertions, 6 deletions
diff --git a/tools/pm/Enum.pm b/tools/pm/Enum.pm
index c1bdc3c3..c3866c81 100644
--- a/tools/pm/Enum.pm
+++ b/tools/pm/Enum.pm
@@ -212,13 +212,15 @@ sub parse_values($$)
# enum.pl generates nick names from the C names of the enum constants.
# A nick name consists of the trailing part of the enum name.
# The leading part which is common for each constant of an enum type
- # has been removed. The remaining part is then tranform to lowercase
+ # has been removed. The remaining part is then transformed to lowercase
# and hyphens.
- # Transform the nick name with lowercase letters and hyphens
- # back to a short name with uppercase letters and underscores.
- # The short names are suitable for 'enum class' definitions.
- $nick_name =~ tr/a-z-/A-Z_/;
- push(@$elem_short_names, $nick_name);
+ # The nick names would have been suitable for 'enum class' definitions
+ # if they had not been transformed to lowercase and hyphens.
+ # But the length of the nick names can be used. Create short names
+ # consisting of the trailing part of the names with the same length
+ # as the nick names.
+ my $short_name = substr($name, length($name) - length($nick_name));
+ push(@$elem_short_names, $short_name);
push(@$elem_names, $name);
push(@$elem_values, $value);
}