From: Chip Salzenberg Date: Thu, 10 Oct 1996 14:33:08 +0000 (+0000) Subject: Re: Group fix for 5.003_06 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=29355cf7c264644d9791296662f7c3bb61b94787;p=p5sagit%2Fp5-mst-13.2.git Re: Group fix for 5.003_06 The group problems recently experienced are due to a small error introduced in 5.003_06. This patch is required to fix the bug: --- diff --git a/mg.c b/mg.c index 934c776..821de5b 100644 --- a/mg.c +++ b/mg.c @@ -551,7 +551,7 @@ MAGIC *mg; } #endif sv_setpv(sv,buf); - SvNOK_on(sv); /* what a wonderful hack! */ + SvIOK_on(sv); /* what a wonderful hack! */ break; case '*': break;