summaryrefslogtreecommitdiff
path: root/pod/splitpod
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2003-03-20 11:55:01 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-04-02 20:41:46 +0000
commit5b3c99c010f99810b63aaa04e000fb2c8547942a (patch)
tree0afe748a27734311cd29c94a19f45787799b9896 /pod/splitpod
parent5fc52bc68f8bca292cb1880662c8edef5b0c54a8 (diff)
downloadperl-5b3c99c010f99810b63aaa04e000fb2c8547942a.tar.gz
Fix missing functions when splitting perlfunc
Message-ID: <3E79AC15.80307@uk.radan.com> p4raw-id: //depot/perl@19140
Diffstat (limited to 'pod/splitpod')
-rwxr-xr-xpod/splitpod3
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/splitpod b/pod/splitpod
index fd38e51acf..0e936337e3 100755
--- a/pod/splitpod
+++ b/pod/splitpod
@@ -10,7 +10,8 @@ while (<>) {
next unless /^=(?!cut)/ .. /^=cut/;
- if (s/=item (\S+)/$1/) {
+ if (/=item (\S+)/ and $1 ne '*') {
+ s/=item //;
#$cur = "POSIX::" . $1;
$next{$cur} = $1;
$cur = $1;