Removing leading and trailing empty lines from all example files.

Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl

local($/) = undef;
my $text = <>;

$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;

print "$text";
-----------------------------------------------------
This commit is contained in:
Sylvain Pion
2007-03-10 16:17:17 +00:00
parent ffe1e4ec1c
commit 847c23a15e
206 changed files with 0 additions and 311 deletions
@@ -18,4 +18,3 @@ int main() {
CGAL::box_intersection_d( boxes, boxes+9, query, query+2, callback);
return 0;
}