... I'm working on it, and Encode will use it. Please give me a break before I go spare. Thank you. -- God damn it, it is not acceptable, it is NOT FUCKING...
Simon Cozens
simon@...
Oct 1, 2000 12:59 pm
73926
I think I've managed to track down where self-ties are broken. It is in pp_hot.c in pp_aelem, 4 lines from the bottom of the function: if (!lval &&...
Alan Burlison
Alan.Burlison@...
Oct 1, 2000 4:00 pm
73927
... So am I ;-) ... Like wise. I _NEED_ this stuff _now_ - hence I am implementing it ... Thank you. -- Nick Ing-Simmons...
Nick Ing-Simmons
nick@...
Oct 1, 2000 6:25 pm
73928
... Nothing at all. That is what we have now (bleadperl). I made the old one a wrapper on a re-named new one. ... Quite. ... -- Nick Ing-Simmons...
In some still unknown way the Configure probing of freetype had failed. The below seemed to be cure the situation. ... From: Marchelm Bomers...
Jarkko Hietaniemi
jhi@...
Oct 1, 2000 10:27 pm
73931
... Otherwise it looks good for 5.7.1 but it seems that in the thread there were some additional concerns and comments by Sarathy and Tim which need to be...
Jarkko Hietaniemi
jhi@...
Oct 1, 2000 10:37 pm
73932
... Oh, I see. These concernes were all addressed long time ago. The patch is *documenting* things, not *creating* them. But I forgot to uppercase names in...
Ilya Zakharevich
ilya@...
Oct 1, 2000 10:50 pm
73933
... Looks fine. Will apply as soon as I have hacked the multiheaded hydra also known as my inbox-left-on-its-own-for-two-weeks to have a little fewer heads. ...
Jarkko Hietaniemi
jhi@...
Oct 1, 2000 11:28 pm
73934
This is a bug report for perl from hv@..., generated with the help of perlbug 1.32 running under perl v5.7.0. ... [Please enter your report...
Hugo
hv@...
Oct 2, 2000 12:37 am
73935
This is a build failure report for perl from nick@..., generated with the help of perlbug 1.32 running under perl v5.7.0. ... [Please enter your...
Nick Clark
nick@...
Oct 2, 2000 10:05 am
73936
This is a bug report for perl from nick@..., generated with the help of perlbug 1.32 running under perl v5.7.0. ... [Please enter your report...
Nick Clark
nick@...
Oct 2, 2000 10:27 am
73937
... Beware changing a macro from reading its argument once to reading its argument twice: this'll break isCNTRL(*s++) styles. (I can't easily check just now...
Hugo
hv@...
Oct 2, 2000 10:38 am
73938
Jarkko told me this only happened with -Dusemymalloc on HP-UX 11.00 # Configure -ds -Dusemymalloc # make test ... lib/ndbm.............ok ...
H.Merijn Brand
h.m.brand@...
Oct 2, 2000 10:42 am
73939
... Excellent point that I'd completely forgotten. find . -name \*.c | xargs grep isCNTRL finds no such use. Its friends are: # define isUPPER(c) ((c) >= 'A'...
Nicholas Clark
nick@...
Oct 2, 2000 10:44 am
73940
... Shouldn't # define isCNTRL(c) (((unsigned int)(c)) < ' ') accomplish the same thing without re-evaluating the argument? (You may have a typedef you...
John Linderman
jpl@...
Oct 2, 2000 10:49 am
73941
This is a success report for perl from h.m.brand@..., generated with the help of perlbug 1.32 running under perl v5.7.0. Perl reported to build OK on...
H.Merijn Brand
h.m.brand@...
Oct 2, 2000 10:53 am
73942
This is a success report for perl from h.m.brand@..., generated with the help of perlbug 1.32 running under perl v5.7.0. Perl reported to build OK on...
H.Merijn Brand
h.m.brand@...
Oct 2, 2000 10:54 am
73943
For that matter, if # define isCNTRL(c) ((c) < ' ') causes problems because of sign, isn't # define isASCII(c) ((c) <= 127) an accident waiting to happen?...
As I do want to change my subscription address for the p5p list, I've sent a new subscription request, and added one line in the body to invalidate the ...
H.Merijn Brand
h.m.brand@...
Oct 2, 2000 12:28 pm
73946
... I always thought one had to use either XS code, or use two AV's in pure perl, to perform a "self-tie" operation. Am I wrong? mark -- ...
Mark Mielke
markm@...
Oct 2, 2000 1:14 pm
73947
[an idea thrown to the wol^Wworthy members of this forum -- none of the details have been thought out in any great depth, especially in the area of...
Jarkko Hietaniemi
jhi@...
Oct 2, 2000 1:15 pm
73948
... I think that's fixed in (unstable) 5.7.0 and hence should show up in 5.6.1. I'll take a look later today. If memory serves, it was a simple patch you...
Andy Dougherty
doughera@...
Oct 2, 2000 1:38 pm
73949
... Well, at the moment you can't self-tie in either XS or pureperl - the failure symptoms are identical. I believe it once worked - at least there are...
Alan Burlison
Alan.Burlison@...
Oct 2, 2000 1:52 pm
73950
One of the problems with carriage returns in perl scripts was that Unix kernels see the #! line and look for "/usr/bin/perl\r", which fails. I think I've found...
Nicholas Clark
nick@...
Oct 2, 2000 2:21 pm
73951
... I doubt that change#1307 is the problem--we call sv_mortalcopy() in lots of other situations. IIRC, Chip did the work to support self-ties (prompted by...
Gurusamy Sarathy
gsar@...
Oct 2, 2000 3:42 pm
73952
I'm getting duplicate p5p messages from a bob55552002@.... Here's a recent copy. The Message-Id: is the same as the original, but the To: and Subject:...
Gurusamy Sarathy
gsar@...
Oct 2, 2000 4:13 pm
73953
... I got one that was a copy of a message from Rick Delaney to me. It looks like the duplicates are going to the CC addresses. Ronald...
Ronald J Kimball
rjk@...
Oct 2, 2000 4:21 pm
73954
... Yes, but not where tied magic is involved. sv_mortalcopy is recursively calling the FETCH method when called on a tied hash/array. This is surely broken?...