Re: More on WMK lockup...
Denis Barbier <[email protected]> Mon, 3 Nov 2003 01:37:29 +0100
| Newsgroups | gmane.comp.web.wml |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Nov 03, 2003 at 11:23:19AM +1100, Darryl Smith wrote: > Denis > > Thanks for the help. > > I have tried removing /s from each use in the subroutine without it working. > > None of the .wmlrc or .wmkrc file contains control characters. Some of the > source files do, but it is not getting that far. Okay, let's try something else. On my box, the attached script prints $ perl test.pl ! copy! According to your previous messages, your output is different. If so, this is definitely a perl bug; I would really suspect UTF-8 brokenness here, are you sure that your changes were effective? Maybe you have to logout to have these changes taken into account? -- Denis Barbier WML Maintainer
test.pl
(application/x-perl, 81 B)
$str = '-F copy';
$str =~ s|^([^\s"']+)(.*)$|$r .= $1, $2|e;
print ("!$str!\n");