diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl index 1d1408fad1301dee36c911cab5acdd7c4436c60a..e5a5588a86394e5730f2cabb322f019b6132543d 100755 --- a/scripts/get_abi.pl +++ b/scripts/get_abi.pl @@ -371,6 +371,14 @@ sub output_rest { print "- :ref:`$content <$label>`\n\n"; } } + + if (defined($data{$what}->{users})) { + my $users = $data{$what}->{users}; + + $users =~ s/\n/\n\t/g; + printf "Users:\n\t%s\n\n", $users if ($users ne ""); + } + } }