Change 16157 by jhi@alpha on 2002/04/25 14:30:40
Subject: [PATCH] pp_ctl.c:pp_require
From: "Newton, Philip" <[EMAIL PROTECTED]>
Date: Thu, 25 Apr 2002 16:01:14 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/pp_ctl.c#313 edit
Differences ...
==== //depot/perl/pp_ctl.c#313 (text) ====
Index: perl/pp_ctl.c
--- perl/pp_ctl.c.~1~ Thu Apr 25 08:45:05 2002
+++ perl/pp_ctl.c Thu Apr 25 08:45:05 2002
@@ -2945,9 +2945,9 @@
/* help out with the "use 5.6" confusion */
if (sver == 0 && (rev > 5 || (rev == 5 && ver >= 100))) {
- DIE(aTHX_ "Perl v%"UVuf".%"UVuf".%"UVuf" required--"
- "this is only v%d.%d.%d, stopped"
- " (did you mean v%"UVuf".%03"UVuf"?)",
+ DIE(aTHX_ "Perl v%"UVuf".%"UVuf".%"UVuf" required"
+ " (did you mean v%"UVuf".%03"UVuf"?)--"
+ "this is only v%d.%d.%d, stopped",
rev, ver, sver, PERL_REVISION, PERL_VERSION,
PERL_SUBVERSION, rev, ver/100);
}
End of Patch.