1.90 Tue Mar 25 01:17:38 2003
- BACKWARDS INCOMPATIBLE CHANGE: The key of an %item entry for
a repeated subrule now includes the repetition specifier.
For example, in:
sentence: subject verb word(s)
the various matched items will be stored in $item{'subject'},
$item{'verb'}, and $item{'word(s)'} (i.e. *not* in $item{'word'},
as it would have been in previous versions of the module).
(thanks Anthony)
####
Item(s) EOF
{
$return = [ @{$item{Item}} ];
}
##
##
Item(s) EOF
{
$return = [ @{$item{qq(Item(s))}} ];
}