View Single Post
  #7  
Old 12-22-2003, 03:16 PM
Eglin
Hill Giant
 
Join Date: Nov 2003
Posts: 168
Default

Quote:
Originally Posted by Lurker_005
Quick note on that perl conversion script, it seems to add an I at the ends of "if($text=~/name/i);" type statments and had ;; instead of ; at the end of everything was that intentional?
Yeah. Easier to unconditionally slap on a ; than to check to see if one already exists. Perl doesn't care about ;;, so neither do I. If it really bothers you, just s/;+/;
Reply With Quote