From: wolf Date: Tue, 21 Mar 2006 22:38:51 +0000 (+0000) Subject: Fix one problem where doxygen gets confused about comment end markers. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fdd179058221718ea1803f3a31edf1464530917;p=dealii-svn.git Fix one problem where doxygen gets confused about comment end markers. git-svn-id: https://svn.dealii.org/trunk@12651 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/tutorial/chapter-2.step-by-step/program2doxygen b/deal.II/doc/tutorial/chapter-2.step-by-step/program2doxygen index a8023c70f7..fa08463625 100644 --- a/deal.II/doc/tutorial/chapter-2.step-by-step/program2doxygen +++ b/deal.II/doc/tutorial/chapter-2.step-by-step/program2doxygen @@ -20,7 +20,11 @@ $state = $comment_mode; print " * \n"; do { - # substitute special characters + # substitute tabs. also make sure that we don't output comment end + # markers that might confuse doxygen + s!/\*!/ \*!g; + s!\*/!\* /!g; + s/\t/ /g; if (($state == $program_mode) && m!^\s*//!)