From: wolf Date: Wed, 18 Jan 2006 15:54:32 +0000 (+0000) Subject: Skip the entire first comment block, which is necessary since Guido's X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e9950a91387f7e91acf72bc108c080e22dbf283;p=dealii-svn.git Skip the entire first comment block, which is necessary since Guido's November changes. git-svn-id: https://svn.dealii.org/trunk@12087 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/program2html b/deal.II/doc/tutorial/chapter-2.step-by-step/program2html index 24de747a27..a9c67348f0 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/program2html +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/program2html @@ -6,7 +6,7 @@ print "

The commented program

\n"; # ignore comments at the start of the program. this includes CVS # tags and copyright notices. $_ = <>; -while ( m!^/[/\*]! || m/^$/ ) { +while ( m!^/[/\*]! || m!\s*\*! || m/^$/ ) { $_ = <>; } diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/program2plain b/deal.II/doc/tutorial/chapter-2.step-by-step/program2plain index 1b99048e5f..52819ff606 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/program2plain +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/program2plain @@ -3,7 +3,7 @@ # ignore comments at the start of the program. this includes CVS # tags and copyright notices. $_ = <>; -while ( m!^/[/\*]! || m/^$/ ) { +while ( m!^/[/\*]! || m!\s*\*! || m/^$/ ) { $_ = <>; }