summaryrefslogtreecommitdiff
path: root/perly.y
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-08-26 15:30:35 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-08-26 15:30:35 +0200
commit950f2ea2662b3cc90a921896855174e32ecb4697 (patch)
treecd220084cd0a0b030fc53b952812451697da94b8 /perly.y
parentd503a9ba1b647d7301de5326f3dab5a9176a98a4 (diff)
downloadperl-950f2ea2662b3cc90a921896855174e32ecb4697.tar.gz
Make MAD understand the "..." operator
Diffstat (limited to 'perly.y')
-rw-r--r--perly.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/perly.y b/perly.y
index c07f48a4d3..bcdd434eca 100644
--- a/perly.y
+++ b/perly.y
@@ -1238,6 +1238,7 @@ term : termbinop
{
$$ = newLISTOP(OP_DIE, 0, newOP(OP_PUSHMARK, 0),
newSVOP(OP_CONST, 0, newSVpvs("Unimplemented")));
+ TOKEN_GETMAD($1,$$,'X');
}
;