summaryrefslogtreecommitdiff
path: root/bin/manilist.SH
diff options
context:
space:
mode:
authorrmanfredi <rmanfredi@190e5f8e-a817-0410-acf6-e9863daed9af>2008-01-04 23:14:00 +0000
committerrmanfredi <rmanfredi@190e5f8e-a817-0410-acf6-e9863daed9af>2008-01-04 23:14:00 +0000
commit1e7ef113b85f4e4e10ffaa2c3f362645a7c7eecf (patch)
tree64777fbe1a0b811e9a8ffb66231b2b3966e59608 /bin/manilist.SH
parent3917f89474931cf825dd53e6bf00665992b9049b (diff)
Applied diff from H.Merijn Brand to keep it working with perl 5.10, which
no longer supports the old $* perl4 variable to request multiline matching. git-svn-id: https://dist.svn.sourceforge.net/svnroot/dist/trunk/dist@20 190e5f8e-a817-0410-acf6-e9863daed9af
Diffstat (limited to 'bin/manilist.SH')
-rwxr-xr-xbin/manilist.SH3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/manilist.SH b/bin/manilist.SH
index 75dd073..1bb8f3f 100755
--- a/bin/manilist.SH
+++ b/bin/manilist.SH
@@ -472,8 +472,7 @@ EOF
# Remove ':' quotations in front of the lines
sub q {
local($_) = @_;
- local($*) = 1;
- s/^://g;
+ s/^://gm;
$_;
}