Small fix to check_doxy_blocks script
This commit is contained in:
parent
1b57878e4a
commit
ef009ffde9
1 changed files with 2 additions and 2 deletions
|
@ -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) = @_;
|
||||
|
|
Loading…
Reference in a new issue