From: Luca Heltai Date: Thu, 10 May 2018 14:39:08 +0000 (+0200) Subject: Fixed perl regex. X-Git-Tag: v9.1.0-rc1~1151^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a8d86becfdccfd3594dc3a04ec0347b5ad77a57;p=dealii.git Fixed perl regex. --- diff --git a/doc/doxygen/scripts/program2doxygen b/doc/doxygen/scripts/program2doxygen index f2c27cda77..3fc114e0c4 100644 --- a/doc/doxygen/scripts/program2doxygen +++ b/doc/doxygen/scripts/program2doxygen @@ -138,10 +138,10 @@ do { } # in code fragment mode: only skip leading whitespace and # comment // signs - s!\s*//\s(.*)\n!$1!; + s!^\s*//(.*)\n!$1!; # finally print this line - print " * $_\n"; + print " *$_\n"; if (m!^ *\s*\@endcode!) {