diff options
author | Joshua Pritikin <joshua.pritikin@db.com> | 1998-06-14 10:03:15 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-15 05:32:01 +0000 |
commit | 1163b5c41f1e1e2856ca82fef1598bfbb6c54d72 (patch) | |
tree | 5b79b14d3fdae82835bb4e3561173110803f64d4 /pod/perldiag.pod | |
parent | f55ee38a033ce570145fdd38bb9f09acf59d37cd (diff) | |
download | perl-1163b5c41f1e1e2856ca82fef1598bfbb6c54d72.tar.gz |
added patch, fixed typo, reworked documentation
Message-Id: <H00000e500071aa3@MHS>
Subject: [PATCH 5.004_66] JMPENV!
p4raw-id: //depot/perl@1135
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 8dd2f823a0..e35ad46619 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1380,6 +1380,11 @@ ignored. (F) Your machine apparently doesn't implement ioctl(), which is pretty strange for a machine that supports C. +=item JMPENV_JUMP(%d) is bogus + +(S) Either some extension is trying to raise an exception type that is not +supported by the JMPENV API, or memory has been corrupted. See L<perlguts>. + =item junk on end of regexp (P) The regular expression parser is confused. @@ -1915,7 +1920,9 @@ was string. =item panic: top_env -(P) The compiler attempted to do a goto, or something weird like that. +(X) An attempt was made to throw some sort of exception when there +was no exception stack. Either perl failed to initialize properly, or +the JMPENV API is being misused. See L<perlguts>. =item panic: yylex |