Perl in a Nutshell by Ellen Siever, Stephen Spainhour, & Nathan Patwardhan Here are the changes made in the 5/99 reprint: (45) Table 4-2, "Quoting Syntax in Perl" was changed to match the table in Programming Perl (41). The table now reads: Customary Generic Meaning Interpolates '' q// Literal No "" qq// Literal Yes `` qx// Command Yes () qw// Word list No // m// Pattern match Yes s/// s/// Substitution Yes y/// tr/// Translation No {463} Used to read: $req = HTTP::Request->new(GET, $url) Now reads: $req = HTTP::Request->new(GET, $url); (505) The option 'solid' is now included in the value list for the --relief option. <509> In the section The Label Widget, the last line used to read: "Button text will change as $variable does." It now reads: "Label text will change as $variable does." <509> In the section The Entry Widget, the last line used to read: "Button text will change as $variable does." Changed to read: "Entry widget text will change as $variable does."