git-svn-id: https://svn.dealii.org/branches/releases/Branch-7-0@23213
0785d39b-7218-0410-832d-
ea1e28bc413d
# $Id$
# Version: $Name$
#
-# Copyright (C) 2010 by the deal.II authors
+# Copyright (C) 2010, 2011 by the deal.II authors
#
# This file is subject to QPL and may not be distributed
# without copyright and license information. Please refer
my $block_comment = 0;
while (<>) {
- # Eliminate comment lines
+ # Eliminate //-comment lines
next if (m!^\s*//!);
- if (s!^\s*/\*.*\*/!!g)
- {
- print unless (m/^\s*$/);
- next;
- }
- #Find begin of block comment
- if (s!/\*.*!!)
- {
- $block_comment = 1;
- # Print unless empty
- print unless m/^\s*$/;
- next;
- }
-
- # Find end of block comment
- if ($block_comment != 0)
- {
- if (s!.*\*/!!)
- {
- $block_comment = 0;
- # Print unless empty
- print unless m/^\s*$/;
- }
- next;
- }
+
+ # Otherwise print the line
print;
}
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams