kill whitespace in blank lines.

2004-03-26  Manish Singh  <yosh@gimp.org>

        * tools/pdbgen/app.pl: kill whitespace in blank lines.

        * app/pdb/*.c: regenerated, no code changes, only whitespace.
This commit is contained in:
Manish Singh 2004-03-26 16:38:44 +00:00 committed by Manish Singh
parent ef798bbcc3
commit 5c592d52c1
34 changed files with 367 additions and 359 deletions

View File

@ -1,3 +1,9 @@
2004-03-26 Manish Singh <yosh@gimp.org>
* tools/pdbgen/app.pl: kill whitespace in blank lines.
* app/pdb/*.c: regenerated, no code changes, only whitespace.
2004-03-26 Michael Natterer <mitch@gimp.org>
* app/core/gimpdrawable-transform.c

View File

@ -57,6 +57,8 @@ sub format_code_frag {
while ($code =~ /^\t* {8}/m) { $code =~ s/^(\t*) {8}/$1\t/mg }
$code .= "\n";
$code =~ s/^\s+$//mg;
$code;
}