projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b24f19c
)
Add version check option to "use"
Perl 5 Porters [Fri, 5 Jul 1996 20:03:14 +0000 (20:03 +0000)]
perly.y
patch
|
blob
|
blame
|
history
diff --git
a/perly.y
b/perly.y
index
96a35e1
..
57c9630
100644
(file)
--- a/
perly.y
+++ b/
perly.y
@@
-267,8
+267,8
@@
package : PACKAGE WORD ';'
{ package(Nullop); }
;
-use : USE startsub WORD listexpr ';'
- { utilize($1, $2, $3, $4); }
+use : USE startsub WORD WORD listexpr ';'
+ { utilize($1, $2, $3, $4, $5); }
;
expr : expr ANDOP expr