Sorry if this seems perl and not mod_perl, but its from the
mod_perl book n all.  On page 115, in Lincoln's navbar code
he writes a loop as:

        local $/ = "";
        while (<$fh>) {
                s:(</BODY>):$navbar$1:i;
                s:(<BODY.*?>):$1$navbar:i;
        } continue {
                $r->print($_);
        }

Is there some reason he is using a continue block?  Isn't 
continue only interesting in the presence of next and last?
My guess is that this example code was trimmed down from s
something fancier and this is a palimpsest fragment.

(Just checking my sanity)
-j

Reply via email to