... MM> Point exactly? So what seems to be the problem? We've been trying to MM> tell you this over and over and it looks like you got it. Sort of? That there...
Chaim Frenkel
chaimf@...
Mar 1, 1998 8:25 am
19638
This is a bug report for perl from spider@..., generated with the help of perlbug 1.20 running under perl 5.00461. ... [Please enter your report...
Spider Boardman
spider@...
Mar 1, 1998 8:26 am
19639
I've put re_speed distribution into ftp://ftp.math.ohio-state.edu/pub/users/ilya/perl/scripts These two scripts allow one to compare two different version of...
Ilya Zakharevich
ilya@...
Mar 1, 1998 8:32 am
19640
... I don't see why we cannot add appropriate MUTEXs to make it thread safe if not thread hot. But its not top priority....
Nick Ing-Simmons
nick@...
Mar 1, 1998 8:48 am
19641
... You are mistaken, because you think the line *includes* the \n, while Larry (and therefore Perl) thinks the line stops just *before* the \n (or just before...
Chip Salzenberg
chip@...
Mar 1, 1998 11:42 am
19642
... (repeated regret that I didn't put that in 5.004) ... Sure do ... whoever wants it, just ask. -- Chip Salzenberg - a.k.a. -...
Chip Salzenberg
chip@...
Mar 1, 1998 11:48 am
19643
This patch I am much happier with. It optimize foreach($min..$max) also when $min/$max are not constants. Another nice thing is that for my $i (1 .. $y) {} is...
Gisle Aas
gisle@...
Mar 1, 1998 2:52 pm
19644
Magic string range is confused if the second string is less than the first. $ perl -e 'print P..L, "\n"' PQRSTUVWXYZ This patch should be applicable to both...
Gisle Aas
gisle@...
Mar 1, 1998 2:52 pm
19645
RedHat 5.0 with 'kaffe' installed has a /usr/lib/libnet.so that will confuse Perl. This patch should be applicable to both perl5.004_04 and perl5.004_61. ...
Gisle Aas
gisle@...
Mar 1, 1998 2:53 pm
19646
... MM> m Treat string as multiple lines. That is, change "^" and MM> "$" from matching at only the very start or end of the MM> string to the start or end...
Chaim Frenkel
chaimf@...
Mar 1, 1998 4:08 pm
19647
Brandon S. Allbery KF...
bsa@...
Mar 1, 1998 4:32 pm
19648
Hello: I'm a novice programmer with several compilers (COBOL,C,Tcl,VBasic) as well as Perl, on my system. I was wondering if you folks can aid me in actually...
Stephen Lane Harden
newcentury2000@...
Mar 1, 1998 5:51 pm
19649
... Typo... CF> I don't care which way it will go. I just want CF> for ("foo\n", "bar\n") { /\n$/ } CF> to match CF> $_ = "foo\nbar\n"; /\n$/g; CF> in terms...
Chaim Frenkel
chaimf@...
Mar 1, 1998 6:09 pm
19650
In message "Re: Is the following result correct? Using m/\n$/m.", ... This is an illogical request. You are trying to locate TWO line terminators or something...
Mark Mielke
markm@...
Mar 1, 1998 6:34 pm
19651
... There is a third posibility: The definition of "line" is more complex than you think. The meaning of $ is flexible enough to handle strings that have been ...
... Chip asked me to submit a patch, so here's my attempt at clarifying this example. -Mark- ... *************** *** 3552,3564 **** system() on a Unix system...
Mark R. Levinson
mrl@...
Mar 1, 1998 8:03 pm
19655
... CS> So if you're looking for confirmation that there is something 'wrong' CS> going on, you've got it. But it's 'wrong' for a purpose, and that CS>...
Chaim Frenkel
chaimf@...
Mar 1, 1998 9:30 pm
19656
This is a bug report for perl from hansmu@..., generated with the help of perlbug 1.20 running under perl 5.00461. ... [Please enter your report here] ...
hansm@...
Mar 1, 1998 9:34 pm
19657
This is an experimental patch to enable soft references in Perl. The chunk for pp_sys.c is _very_ temporary, it is there to allow experiments only: If $r is a...
Ilya Zakharevich
ilya@...
Mar 1, 1998 10:47 pm
19658
As you may know, creating closures gives a memory leak: the factory for closure-production (SV which has CLONE flag) is never deleted. I think this is due to...
Ilya Zakharevich
ilya@...
Mar 1, 1998 10:47 pm
19659
This is a bug report for perl from bobgus@..., generated with the help of perlbug 1.20 running under perl 5.00461. ... [Please enter your report here] The...
Bob Gustafson
bobgus@...
Mar 1, 1998 11:29 pm
19660
... BSAK> `$' matches (a) at the end of the string or (b) BEFORE a newline. `\n$' can BSAK> only match in the middle of a string at a `\n\n'. Just a slight...
Chaim Frenkel
chaimf@...
Mar 1, 1998 11:37 pm
19661
... Gisle> This patch I am much happier with. It optimize Gisle> foreach($min..$max) also when $min/$max are not constants. Gisle> Another nice thing is that ...
Stephen McCamant
alias@...
Mar 1, 1998 11:45 pm
19662
Brandon S. Allbery KF...
bsa@...
Mar 2, 1998 2:15 am
19663
Brandon S. Allbery KF...
bsa@...
Mar 2, 1998 2:17 am
19664
abigail@...
Mar 2, 1998 2:18 am
19665
I configured 60 and 61 the same way: ./Configure -Dprefix=/opt/thrperl -Dusethreads -Doptimize=-g -ders I attached a diff between a 60 -V and 61 -V,...
Doug MacEachern
dougm@...
Mar 2, 1998 2:19 am
19666
... There's a new Configure variable now, so just use $Config{usethreads}. BTW, perl -V output should include usethreads, but doesn't currently. - Sarathy. ...