Small fix to check_doxy_blocks script

This commit is contained in:
Manuel Pégourié-Gonnard 2013-09-16 13:40:25 +02:00 committed by Paul Bakker
parent 1b57878e4a
commit ef009ffde9

View file

@ -16,8 +16,8 @@ use File::Basename;
my @directories = qw(include/polarssl library doxygen/input);
# very naive pattern to find directives:
# everything with a backslach except '\0'
my $doxy_re = qr/\\(?!0)/;
# everything with a backslach except '\0' and backslash at EOL
my $doxy_re = qr/\\(?!0|\n)/;
sub check_file {
my ($fname) = @_;