From 89becbf4269f857ce923b1ea30a21ebbb57c8cc0 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Wed, 26 Feb 2020 14:06:56 -0500 Subject: [PATCH] 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 --- doc/doxygen/scripts/program2doxygen | 5 ----- 1 file changed, 5 deletions(-) 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; -- 2.39.5