From 9fdd179058221718ea1803f3a31edf1464530917 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 21 Mar 2006 22:38:51 +0000 Subject: [PATCH] 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 --- deal.II/doc/tutorial/chapter-2.step-by-step/program2doxygen | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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*//!) -- 2.39.5