diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-08 15:05:46 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-08 15:05:46 +0000 |
commit | 9b22980b339b4f89c40095204779dd6542c70c64 (patch) | |
tree | 37195bdf4f26333e1bce60495420609fa107397e /configpm | |
parent | e46df07c6a69afecf12984530efb9e27a68273fe (diff) | |
download | perl-9b22980b339b4f89c40095204779dd6542c70c64.tar.gz |
Fix Glossary formatting bugs when creating Config.pm,
from Robin Barker.
p4raw-id: //depot/perl@17096
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ EOF ($text ? " or another paragraph of description" : () ); } s/n't/n\00t/g; # leave can't, won't etc untouched - s/^\t\s+(.*)/\n\t$1\n/gm; # Indented lines ===> paragraphs + s/^\t\s+(.*)/\n$1/gm; # Indented lines ===> new paragraph s/^(?<!\n\n)\t(.*)/$1/gm; # Not indented lines ===> text s{([\'\"])(?=[^\'\"\s]*[./][^\'\"\s]*\1)([^\'\"\s]+)\1}(F<$2>)g; # '.o' s{([\'\"])([^\'\"\s]+)\1}(C<$2>)g; # "date" command |