mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2024-12-29 09:21:19 +00:00
Small fix to check_doxy_blocks script
This commit is contained in:
parent
1b57878e4a
commit
ef009ffde9
@ -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 New Issue
Block a user