From: Timo Heister Date: Wed, 26 Feb 2020 19:06:56 +0000 (-0500) Subject: doxygen: do not remove multiline code comments X-Git-Tag: v9.2.0-rc1~498^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9570%2Fhead;p=dealii.git doxygen: do not remove multiline code comments Code in tutorials that contains multiline comments like /*keep_constrained_dofs = */ false were being replaced by / *keep_constrained_dofs = * / false I don't see why this is necessary. The documentation looks correct to me. fixes #9554 --- diff --git a/doc/doxygen/scripts/program2doxygen b/doc/doxygen/scripts/program2doxygen index 5ec2cff918..11fdbf637e 100644 --- a/doc/doxygen/scripts/program2doxygen +++ b/doc/doxygen/scripts/program2doxygen @@ -38,11 +38,6 @@ print " * \n"; do { - # Make sure that we don't output comment end markers that might confuse - # doxygen. - s!/\*!/ \*!g; - s!\*/!\* /!g; - # substitute tabs s/\t/ /g;