comments in preferences-metadata file

This commit is contained in:
Paul Davis 2023-01-27 15:22:59 -07:00
parent 349d25a2d2
commit da8958c330
1 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@ $heading = "";
$accumulated = "";
print "
/* This file was generated by tools/process-metadata */
void
UIConfiguration::build_metadata ()
{
@ -14,7 +15,11 @@ UIConfiguration::build_metadata ()
#define VAR_META(name,...) { char const * _x[] { __VA_ARGS__ }; all_metadata.insert (std::make_pair<std::string,Metadata> ((name), PBD::upcase (_x))); }\n\n";
while (<>) {
if (/\[SECTION:/) {
if (/^#/) {
next;
}
if (/\[SECTION:/) {
chop;
s/\[SECTION://;
s/\]//;