Change 29922 by [EMAIL PROTECTED] on 2007/01/22 19:38:12
Fix a typo and some doubled spaces in comments.
Affected files ...
... //depot/perl/cop.h#137 edit
... //depot/perl/pod/perlapi.pod#279 edit
... //depot/perl/sv.h#317 edit
Differences ...
==== //depot/perl/cop.h#137 (text) ====
Index: perl/cop.h
--- perl/cop.h#136~29601~ 2006-12-20 03:15:29.000000000 -0800
+++ perl/cop.h 2007-01-22 11:38:12.000000000 -0800
@@ -716,7 +716,7 @@
#define G_KEEPERR 16 /* Append errors to $@, don't overwrite it */
#define G_NODEBUG 32 /* Disable debugging at toplevel. */
#define G_METHOD 64 /* Calling method. */
-#define G_FAKINGEVAL 256 /* Faking en eval context for call_sv or
+#define G_FAKINGEVAL 256 /* Faking an eval context for call_sv or
fold_constants. */
/* flag bits for PL_in_eval */
==== //depot/perl/pod/perlapi.pod#279 (text+w) ====
Index: perl/pod/perlapi.pod
--- perl/pod/perlapi.pod#278~29885~ 2007-01-19 12:13:46.000000000 -0800
+++ perl/pod/perlapi.pod 2007-01-22 11:38:12.000000000 -0800
@@ -3873,7 +3873,7 @@
=item SvIV
X<SvIV>
-Coerces the given SV to an integer and returns it. See C<SvIVx> for a
+Coerces the given SV to an integer and returns it. See C<SvIVx> for a
version which guarantees to evaluate sv only once.
IV SvIV(SV* sv)
@@ -4043,7 +4043,7 @@
=item SvNV
X<SvNV>
-Coerce the given SV to a double and return it. See C<SvNVx> for a version
+Coerce the given SV to a double and return it. See C<SvNVx> for a version
which guarantees to evaluate sv only once.
NV SvNV(SV* sv)
==== //depot/perl/sv.h#317 (text) ====
Index: perl/sv.h
--- perl/sv.h#316~29853~ 2007-01-17 10:24:50.000000000 -0800
+++ perl/sv.h 2007-01-22 11:38:12.000000000 -0800
@@ -331,7 +331,7 @@
means that a hv_aux struct is present
after the main array */
#define SVf_BREAK 0x04000000 /* refcnt is artificially low - used by
- SV's in final arena cleanup */
+ SV's in final arena cleanup */
#define SVf_READONLY 0x08000000 /* may not be modified */
@@ -1561,7 +1561,7 @@
stringified form becoming C<SvPOK>. Handles 'get' magic.
=for apidoc Am|IV|SvIV|SV* sv
-Coerces the given SV to an integer and returns it. See C<SvIVx> for a
+Coerces the given SV to an integer and returns it. See C<SvIVx> for a
version which guarantees to evaluate sv only once.
=for apidoc Am|IV|SvIV_nomg|SV* sv
@@ -1572,7 +1572,7 @@
sv only once. Use the more efficient C<SvIV> otherwise.
=for apidoc Am|NV|SvNV|SV* sv
-Coerce the given SV to a double and return it. See C<SvNVx> for a version
+Coerce the given SV to a double and return it. See C<SvNVx> for a version
which guarantees to evaluate sv only once.
=for apidoc Am|NV|SvNVx|SV* sv
End of Patch.