summaryrefslogtreecommitdiff
path: root/doop.c
diff options
context:
space:
mode:
Diffstat (limited to 'doop.c')
-rw-r--r--doop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/doop.c b/doop.c
index a01fc04723..88e0c317c6 100644
--- a/doop.c
+++ b/doop.c
@@ -188,7 +188,7 @@ S_do_trans_complex(pTHX_ SV * const sv)
p = d++;
}
else if (ch == -1) /* -1 is unmapped character */
- *d++ = *s;
+ *d++ = *s;
else if (ch == -2) /* -2 is delete character */
matches++;
s++;
@@ -501,7 +501,7 @@ S_do_trans_complex_utf8(pTHX_ SV * const sv)
UV puv = 0xfeedface;
while (s < send) {
UV uv = swash_fetch(rv, s, TRUE);
-
+
if (d > dend) {
const STRLEN clen = d - dstart;
const STRLEN nlen = dend - dstart + len + UTF8_MAXBYTES;
@@ -751,7 +751,7 @@ Perl_do_vecget(pTHX_ SV *sv, STRLEN offset, int size)
if (!s) {
s = (unsigned char *)"";
}
-
+
PERL_ARGS_ASSERT_DO_VECGET;
if (size < 1 || (size & (size-1))) /* size < 1 or not a power of two */