Thanks ysth, much obliged.

Just to clarify here, what were fixes and what were style issues? For instance these changes to me seem to be putely stylistic.

--- justcode.orig 2004-11-04 03:26:21.186067200 -0800 +++ justcode 2004-11-04 03:26:55.825876800 -0800 @@ -71,8 +71,7 @@ unless ($depth) { # version 00: original format # version 01: keys are escaped, not just values, handles nest +ed refs. - $vars_str =~ s/^(==\d\d)://; - unless (defined $1) { + unless ($vars_str =~ s/^(==\d\d)://) { # No format/format version "00" my %vars = map split(/=/, $_, 2), split /&/, $vars_str; unescape( values %vars ); @@ -84,9 +83,9 @@ } } - my $vars; - $vars_str =~ s/^([AHUV])(.)?//; - my ($type,$split)=($1,$2); + my $vars; + my ($type,$split); + ($type,$split) = ($1,$2) if $vars_str =~ s/^([AHUV])(.)?//; unless (defined $type) { printLog("Undefined type in unpackVars()");

The before and after there seem to me to be functionally identical. Am I right?

update:Nope, failed matches dont reset the regex vars.

---
demerphq


In reply to Re^8: patchable settings (minor fixes, applied to test server) by demerphq
in thread patchable settings by ysth

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.