... Steal the top bit ($^W < 0) and then use a range numbers to mean useful warning sets? <chaim>...
Chaimf@...
Nov 18, 1996 12:47 am
2
Chip Salzenberg
chip@...
Nov 18, 1996 1:02 am
3
... Thanks, this good work. ... No, please don't do this. Make it an explicit delimiter on both ends, like a list environment. '=begin table' and '=end table'...
Kenneth Albanowski
kjahds@...
Nov 18, 1996 1:32 am
4
Yet another project for the next person who don't know what to do with his spare time... Perl needs a perlapi.h and perlapi.c with functions that hide as much...
Hallvard B Furuseth
h.b.furuseth@...
Nov 18, 1996 3:25 am
5
... It seems that the optimal solution (as I see it) requires . Don't break old scripts . Be taint safe . Ensure locale consistancy (sort, lc, etc.) . Give...
Chaimf@...
Nov 18, 1996 4:42 am
6
On p.120 of the blue camel (and in perlsub(1)): sub try (&$) { my($try,$catch) = @_; eval { &$try }; if ($@) { local $_ = $@; &$catch; } } sub catch (&) { @_ }...
Karl Glazebrook
kgb@...
Nov 18, 1996 6:46 am
7
This is a bug report for perl from jnp@..., generated with the help of perlbug 1.12 running under perl 5.002. [Please enter your report here] Configure...
Jxrgen Nxrgaard
jnp@...
Nov 18, 1996 10:55 am
8
Today I traced why my major optimization to sv_setsv fails one test (filecopy.t, out of all! ;-). (Expect a patch soon. ;-) After doing this I looked through...
Ilya Zakharevich
ilya@...
Nov 18, 1996 11:28 am
9
... Path:...
Tom Christiansen
tchrist@...
Nov 18, 1996 1:55 pm
10
Hi all! My problem is the following: I'm parsing a Full_Text file looking 4 a pattern. Here's the part of my program I'm dealing with: open(FULL_TEXT,...
Dario Cabianca
cabianca@...
Nov 18, 1996 6:42 pm
11
... X-ListMember: perl5-porters@... [Perl-Win32-Porters@...] At the developer's conference, Microsoft announced that, besides VBScript...
Beauchemin, Bob
BobB@...
Nov 18, 1996 7:26 pm
12
... X-ListMember: perl5-porters@... [Perl-Win32-Porters@...] Has anyone been successful in spawing a new process which inherits the ...
Dave Roth
rothd@...
Nov 18, 1996 8:19 pm
13
Paul Marquess
pmarquess@...
Nov 18, 1996 9:26 pm
14
... X-ListMember: perl5-porters@... [Perl-Win32-Porters@...] Hi Bob, The Perl people from hip communications (of Perl for Win32 fame)...
Dick Hardt
Dick_Hardt@...
Nov 18, 1996 10:17 pm
15
... X-ListMember: perl5-porters@... [Perl-Win32-Porters@...] Hello All, I have just installed NT4.0 with MIIS2,O w/ NTperl. I can get...
Stephen Dahl
steve@...
Nov 18, 1996 11:03 pm
16
[posted to c.l.p.m] The following script prints 0 (perl5.003, sunos4.1.4 and DEC OSF1): #! perl -w $x = 0x7fffffff00000000; print "$x\n"; c.f. #! perl -w $x =...
David Hammen
hammen@...
Nov 17, 1996 11:13 pm
17
... Couldn't we make $^W a vec() object? - Cameron Simpson cameron@..., DoD#743 http://www.zip.com.au/~cs/ -- It's better to be quotable than...
Cameron Simpson
cameron@...
Nov 17, 1996 11:20 pm
18
... We need some sort of lexically scoped pragma to make it obvious what is going on. That and a 'C' locale might just be sufficient. Hmm. If we make 'use...
Kenneth Albanowski
kjahds@...
Nov 18, 1996 12:01 am
19
Chip Salzenberg
chip@...
Nov 18, 1996 1:43 am
20
Greg Ward
greg@...
Nov 18, 1996 4:21 am
21
Err, I probably was a little garbled in that paragraph. I think we are in agreement. A lexically scoped pragma, that turn on and off the C locale. We lose the...
Chaimf@...
Nov 18, 1996 5:06 am
22
I agree with you, but I think Tom, Jarkko, and Hallvard would probably object to having to change their scripts. So to keep them happy have 'no locale' the...
Chaimf@...
Nov 18, 1996 5:09 am
23
I'd like to reraise my vote to have qw check for , (and #?) on the -w checks. I just read three perl books in a row with examples using commas in qw()s, which...
Tom Christiansen
tchrist@...
Nov 18, 1996 5:55 am
24
... Just checking... Are there actually any locales out there where the unix control/meta characters and for example alphabetical characters conflict? Danish...
Eero Pajarre
eero@...
Nov 18, 1996 6:15 am
25
[posted and mailed to p5-p] I found some strange interactions between the ** and ++ operators: perl -e '$x=2**32; $x++; print "$x\n"' -> 0 ???...
David Hammen
hammen@...
Nov 18, 1996 7:03 am
26
... The bug in Net::FTP has been reported before, and will be fixed in the next libnet release. Regards, Graham. -- Graham Barr <bodg@...> | There is...
Graham Barr
bodg@...
Nov 18, 1996 7:58 am
27
... Yes but you need to recode protocol numbers as Solaris changed them....
Nick Ing-Simmons
nick@...
Nov 18, 1996 8:04 am
28
... The only thing that worries me here is having different regexp behaviour under taint than under non-taint. While other things change some, they give you...
Darren/Torin/Who Ever...
torin@...
Nov 18, 1996 8:23 am
29
unsubscribe...
Thierry Lorenzen
lorenzen@...
Nov 18, 1996 9:04 am
30
... How 'bout that: depending on use/no locale; locale-dependent operations are compiled to different opcodes/flags. Check-procedure for "dangerous" opcodes...