on Mon, 01 Jul 2002 15:22:00 GMT, [EMAIL PROTECTED] (Kyle Babich) wrote: > open(text,"text.txt") or die ("error: text.txt failed\n"); > [...] > bash-2.05$ perl -Tcw index.pl > Unquoted string "text" may clash with future reserved word at > index.pl line 17. > [..] > How do I fix it?
>From perldoc perldiag: Unquoted string ""%s"" may clash with future reserved word (W reserved) You used a bareword that might someday be claimed as a reserved word. It's best to put such a word in quotes, or capitalize it somehow, or insert an underbar into it. You might also declare it as a subroutine. -- felix -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]