summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorPaul Marquess <paul.marquess@btinternet.com>2002-03-01 23:47:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-01 23:00:08 +0000
commit62658f4d9934aba5f8b23afcc078dc12b3a40223 (patch)
tree7ce7fc3cff094cf0f9554a334a0848478ff83a42 /pod
parent506faf56dfc5fbabb52996eac45fa2d064bcf4ba (diff)
downloadperl-62658f4d9934aba5f8b23afcc078dc12b3a40223.tar.gz
RE: VERSION core
From: "Paul Marquess" <paul_marquess@yahoo.co.uk> Message-ID: <AIEAJICLCBDNAAOLLOKLEEGMDOAA.paul_marquess@yahoo.co.uk> p4raw-id: //depot/perl@14937
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod10
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 9db2807b59..9d6e07b4ab 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1223,6 +1223,11 @@ array is empty, just use C<if (@array) { # not empty }> for example.
checks for an undefined I<scalar> value. If you want to see if the hash
is empty, just use C<if (%hash) { # not empty }> for example.
+=item %s defines neither package nor VERSION--version check failed
+
+(F) You said something like "use Module 42" but in the Module file
+there are neither package declarations nor a C<$VERSION>.
+
=item Delimiter for here document is too long
(F) In a here document construct like C<<<FOO>, the label C<FOO> is too
@@ -1266,6 +1271,11 @@ you called it with no args and both C<$@> and C<$_> were empty.
See Server error.
+=item %s does not define %s::VERSION--version check failed
+
+(F) You said something like "use Module 42" but the Module did not
+define a C<$VERSION.>
+
=item Don't know how to handle magic of type '%s'
(P) The internal handling of magical variables has been cursed.