From: Jim Cromie Date: Fri, 30 Dec 2005 22:45:55 +0000 (-0700) Subject: [patch] comment grammar and indentation, spurious tab X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f2524eef90e2d17a5a51c9026c3ecddabd465ed5;p=p5sagit%2Fp5-mst-13.2.git [patch] comment grammar and indentation, spurious tab Message-ID: <43B61B13.3050704@gmail.com> p4raw-id: //depot/perl@26564 --- diff --git a/sv.c b/sv.c index baaba9f..016cad5 100644 --- a/sv.c +++ b/sv.c @@ -125,7 +125,7 @@ following functions (specified as [function that calls visit()] / [function called by visit() for each SV]): sv_report_used() / do_report_used() - dump all remaining SVs (debugging aid) + dump all remaining SVs (debugging aid) sv_clean_objs() / do_clean_objs(),do_clean_named_objs() Attempt to free all objects pointed to by RVs, @@ -1123,14 +1123,14 @@ Perl_sv_upgrade(pTHX_ register SV *sv, U32 new_type) } #ifndef NV_ZERO_IS_ALLBITS_ZERO - /* If NV 0.0 is store as all bits 0 then Zero() already creates a correct - 0.0 for us. */ + /* If NV 0.0 is stores as all bits 0 then Zero() already creates a + * correct 0.0 for us. */ if (old_type_details->zero_nv) SvNV_set(sv, 0); #endif if (new_type == SVt_PVIO) - IoPAGE_LEN(sv) = 60; + IoPAGE_LEN(sv) = 60; if (old_type < SVt_RV) SvPV_set(sv, 0); break; @@ -1727,7 +1727,7 @@ S_sv_2iuv_common(pTHX_ SV *sv) { } else if (SvTYPE(sv) < SVt_PVNV) sv_upgrade(sv, SVt_PVNV); - /* If NV preserves UV then we only use the UV value if we know that + /* If NVs preserve UVs then we only use the UV value if we know that we aren't going to call atof() below. If NVs don't preserve UVs then the value returned may have more precision than atof() will return, even though value isn't perfectly accurate. */