projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
801de10
)
make -Dpv print 8 parser stack items, not 9
Dave Mitchell [Tue, 19 Dec 2006 02:25:19 +0000 (
02:25
+0000)]
p4raw-id: //depot/perl@29589
perly.c
patch
|
blob
|
blame
|
history
diff --git
a/perly.c
b/perly.c
index
ad01d38
..
d5b243b
100644
(file)
--- a/
perly.c
+++ b/
perly.c
@@
-106,7
+106,7
@@
yy_stack_print (pTHX_ const yy_parser *parser)
{
const yy_stack_frame *ps, *min;
- min = parser->ps - 8;
+ min = parser->ps - 8 + 1;
if (min <= &parser->stack[0])
min = &parser->stack[0] + 1;