From 29355cf7c264644d9791296662f7c3bb61b94787 Mon Sep 17 00:00:00 2001 From: Chip Salzenberg Date: Thu, 10 Oct 1996 14:33:08 +0000 Subject: [PATCH] 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: --- mg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4