... For me this doesn't look like a bug. It is about exposing a bit of the implementation, namely that interpolation is concatenation after all. -- andreas...
Andreas J. Koenig
andreas.koenig@...
Feb 1, 2000 8:02 am
61931
From: Tim Bunce [mailto:Tim.Bunce@...] ... I know pretty much nothing about this stuff, but maybe this counts as so obvious that it's not been considered...
Moore, Paul
Paul.Moore@...
Feb 1, 2000 9:18 am
61932
... Good catches, thanks. I just noticed that the test suite I submitted didn't make it in to the distribution: should it be? It tests out a lot of...
Barrie Slaymaker
rbs@...
Feb 1, 2000 9:37 am
61933
In perl5.005_63, each time I invoke the make the modul op.c is compiled. To avoid I carried out an small change in Makefile.SH. I added also in the makefile...
ignasi.roca@...
Feb 1, 2000 10:34 am
61934
(Yeah, I'm responding to ancient e-mail.) ... Thanks; this has now (finally) been fixed in my version. -- Russ Allbery (rra@...)...
Russ Allbery
rra@...
Feb 1, 2000 10:46 am
61935
Sorry, last message have an error the opmini($OBJ_EXT) must be opmini$(OBJ_EXT). Here I resend the corrected message....
ignasi.roca@...
Feb 1, 2000 11:13 am
61936
ignasi.roca@...
Feb 1, 2000 12:22 pm
61937
From: Tom Christiansen [mailto:tchrist@...] ... I quite like them myself :-) I just wish I had a bit more spare time to tidy up the loose ends. ......
paul.marquess@...
Feb 1, 2000 12:51 pm
61938
... No, I mean Perl's built-in exceptions, which are particularly insistent warnings. :-) --tom...
Tom Christiansen
tchrist@...
Feb 1, 2000 12:59 pm
61939
I've posted several messages about different ways the 5.005_63 build of perl is broken. As of the last release of AIX perl 5.005_03 now ships with the...
David R. Favor
dfavor@...
Feb 1, 2000 1:02 pm
61940
... FWIW, I'm not seeing either of your problems with the very latest developer snapshot in AIX 4.3.1.0. I don't remember whether I tried with a clean _63. ...
Jarkko Hietaniemi
jhi@...
Feb 1, 2000 1:08 pm
61941
... Greg, assuming this patch is required, warnings.pm is derived from warnings.pl -- you need to supply a patch for that....
paul.marquess@...
Feb 1, 2000 1:17 pm
61942
... I'm using the latest AIX 4.3.3.10 + latest C compiler 3.6.4 and a clean 5.005_63....
David R. Favor
dfavor@...
Feb 1, 2000 1:23 pm
61943
In message <5104D4DBC598D211B5FE0000F8FE7EB202D49E60@... ... Oh, so that's what # This file was created by warnings.pl # Any changes...
Greg Bacon
gbacon@...
Feb 1, 2000 3:48 pm
61944
The SYNOPSIS of Text::Tabs renders all smashed together. I little indentation solves the problem. ... +++ Tabs.pm 2000/02/01 16:30:09 @@ -73,11 +73,11 @@ ...
Michael G Schwern
schwern@...
Feb 1, 2000 4:57 pm
61945
I'm using bison v1.28 to generate the perl5.005_63 parser, the perly.c. Going on with perl5-tests I have a core in modul op.o, in the function Perl_convert(). ...
ignasi.roca@...
Feb 1, 2000 5:04 pm
61946
Hello, I am currently experiencing some errors with the perl binary that we installed from "The Software Porting And Archive Centre for HP-UX". Could you...
Jacob.Thalacker@...
Feb 1, 2000 5:11 pm
61947
That being said, I can send code and answer questions. My script uses the CGI module to interact with web clients. On running the script with the profiler, ...
Oscar Levi
elf@...
Feb 1, 2000 6:58 pm
61948
Has anyone done this yet? --tom...
Tom Christiansen
tchrist@...
Feb 1, 2000 8:00 pm
61949
Hello, Forgive me if this should have gone elsewhere.. When using perldoc I did something similar to: => perldoc -q ?foo /^=head2\s+.*(?:?foo)/: ?+*{} follows...
Meltzer, Kevin
KMeltzer@...
Feb 1, 2000 8:44 pm
61950
... Hint: you can always run the debugger on the core file, and check the backtrace. With gdb: gdb `which perl` core ... bt Ilya...
Ilya Zakharevich
ilya@...
Feb 1, 2000 8:56 pm
61951
... Do not do it. ... It is eigher a search string (which it is not), and then you use \Q, or it is a REx (which it is), and you do not have * as a first char....
Ilya Zakharevich
ilya@...
Feb 1, 2000 8:58 pm
61952
... Do not try to outsmart the user. This will backfire at you. Most of the time DWIM leads to more confusion, not less confusion. The argument to -q is a...
Ilya Zakharevich
ilya@...
Feb 1, 2000 9:20 pm
61953
Sorry, I don't think that is enough said. The argument stays a REx, it just has a little massaging if it is needed. I would love an example of how 'helping'...
Meltzer, Kevin
KMeltzer@...
Feb 1, 2000 9:35 pm
61954
... I'm not sure I understand the logic bewteen not throwing an error like that when it can be avoided vs. telling someone not to do it. Why not have someone...
Meltzer, Kevin
KMeltzer@...
Feb 1, 2000 9:38 pm
61955
... If it is a REx, no massaging is needed. Ilya...
Ilya Zakharevich
ilya@...
Feb 1, 2000 9:43 pm
61956
... If the user gave a meaningless input, he should be informed about this. Hope this helps, Ilya...
Ilya Zakharevich
ilya@...
Feb 1, 2000 9:57 pm
61957
You seem to be stuck on one thing.. not helping the user say what they mean, and seem to avoid the ugly error, which is easily avoided (patch was sent). If the...
Meltzer, Kevin
KMeltzer@...
Feb 1, 2000 9:57 pm
61958
Yes, this is what I was about to propose in an email (which I now don't need to write). I slightly changed what you have (you seemed to have removed @pod, and...
Meltzer, Kevin
KMeltzer@...
Feb 1, 2000 10:31 pm
61959
... Exactly the opposite. You may want to test the following patch (untested). Please report. Ilya ... +++ ./utils/perldoc.PL Tue Feb 1 17:06:49 2000 @@...