diff options
Diffstat (limited to 'doc/gdoc')
-rwxr-xr-x | doc/gdoc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -630,7 +630,9 @@ sub output_man { } foreach $section (@{$args{'sectionlist'}}) { print ".SH \"" . uc($section) . "\"\n"; - output_highlight($args{'sections'}{$section}); + $sec = $args{'sections'}{$section}; + $sec =~ s/-/\\-/g; + output_highlight($sec); } if ($args{'bugsto'}) { |