summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>2010-05-05 14:40:59 -0400
committerJesse Vincent <jesse@bestpractical.com>2010-05-05 14:40:59 -0400
commitae18566af0ea83777df8fec61aac717652bf0214 (patch)
tree5aa65f4a51d90ec48f523d10ffd69014f483b409 /pod
parent01a6539711670dc7a832dd98ee7731633cc75523 (diff)
downloadperl-ae18566af0ea83777df8fec61aac717652bf0214.tar.gz
Revert "New deprecation warning: Dot after %s literal is concatenation"
This reverts commit 6fb472bab4fadd0ae2ca9624b74596afab4fb8cb. Zefram asked me to revert this as he's going to be doing something more pluggable
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod11
1 files changed, 0 insertions, 11 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index 6d6322adac..cf0c62a6f6 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1534,17 +1534,6 @@ you called it with no args and both C<$@> and C<$_> were empty.
See Server error.
-=item Dot after %s literal is concatenation
-
-(D) You had something like 0x123.456 in your code. This is currently
-parsed as the hexadecimal number 0x123 concatenated with the decimal
-number 456, not 0x123 + 0x456/0x1000 -- we only support decimal
-decimal points. If you meant it to be a fraction, you'll need to use
-Math::BigFloat's from_hex (or friends). If you meant it to be
-concatenation, just put spaces around the dot to make it clearer. In
-5.14.0, we expect to change this to mean a hex fraction. (Of course,
-everything above applies to octal and binary constants, too.)
-
=item %s does not define %s::VERSION--version check failed
(F) You said something like "use Module 42" but the Module did not