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
-2
View File
@@ -1,4 +1,3 @@
//-----------------------------------------------------------------------//
// This is just a simple example that demonstrates how to use the
// class CGAL::Polygon_2.
@@ -78,4 +77,3 @@ int main()
return 0;
}