Small fix to check_doxy_blocks script
diff --git a/scripts/check_doxy_blocks.pl b/scripts/check_doxy_blocks.pl
index c90143b..d547a62 100755
--- a/scripts/check_doxy_blocks.pl
+++ b/scripts/check_doxy_blocks.pl
@@ -16,8 +16,8 @@
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) = @_;