"Igor Vrdoljak" <[EMAIL PROTECTED]> writes: > It does not work. > Here's error I get: > > Can't declare ref-to-glob cast in "my" at sms_lib.pl line 256, near ");"
Woops. Overlooked that little detail. Globs like *FP are global symbols, you can't declare them lexical using 'my'. Use this instead: local *FP; jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
