diff options
author | Thomas Munro <tmunro@postgresql.org> | 2021-01-05 13:27:06 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2021-01-05 13:27:06 +1300 |
commit | fe05b6b620066aec313c43b6b4d6c169d0a346f7 (patch) | |
tree | c2fe6c9433976b25bb147c760c3c0253d228542a /src | |
parent | c0d4f6d897492727d4812679e6a94d12edbe016f (diff) | |
download | postgresql-fe05b6b620066aec313c43b6b4d6c169d0a346f7.tar.gz postgresql-fe05b6b620066aec313c43b6b4d6c169d0a346f7.zip |
pgindent: whitelist/blacklist -> additional/excluded.
Author: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue%40alap3.anarazel.de
Diffstat (limited to 'src')
-rwxr-xr-x | src/tools/pgindent/pgindent | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 4124d27dea6..feb02067c5a 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -54,12 +54,12 @@ $excludes ||= "$code_base/src/tools/pgindent/exclude_file_patterns" # some names we want to treat like typedefs, e.g. "bool" (which is a macro # according to <stdbool.h>), and may include some names we don't want # treated as typedefs, although various headers that some builds include -# might make them so. For the moment we just hardwire a whitelist of names -# to add and a blacklist of names to remove; eventually this may need to be +# might make them so. For the moment we just hardwire a list of names +# to add and a list of names to exclude; eventually this may need to be # easier to configure. Note that the typedefs need trailing newlines. -my @whitelist = ("bool\n"); +my @additional = ("bool\n"); -my %blacklist = map { +"$_\n" => 1 } qw( +my %excluded = map { +"$_\n" => 1 } qw( ANY FD_SET U abs allocfunc boolean date digit ilist interval iterator other pointer printfunc reference string timestamp type wrap ); @@ -134,11 +134,11 @@ sub load_typedefs } } - # add whitelisted entries - push(@typedefs, @whitelist); + # add additional entries + push(@typedefs, @additional); - # remove blacklisted entries - @typedefs = grep { !$blacklist{$_} } @typedefs; + # remove excluded entries + @typedefs = grep { !$excluded{$_} } @typedefs; # write filtered typedefs my $filter_typedefs_fh = new File::Temp(TEMPLATE => "pgtypedefXXXXX"); |