summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-09-09 18:24:30 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-09 18:24:30 +0000
commit7481bb52051f557e66a749903d91c3b51ae46e5c (patch)
treeb139c63e50cb5beb9ff5b2baab5733bd474c814c /sv.c
parentd3a1d5647737d6f75a9a27253766130f69d2a48e (diff)
downloadperl-7481bb52051f557e66a749903d91c3b51ae46e5c.tar.gz
Remove ill-designed %B introduced by change #4111.
p4raw-link: @4111 on //depot/cfgperl: eda88b6dbdc5ca6a51d54f58740f0210e618beb7 p4raw-id: //depot/cfgperl@4117
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index f6a793c40a..5be8a31102 100644
--- a/sv.c
+++ b/sv.c
@@ -4959,7 +4959,6 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV
base = 10;
goto uns_integer;
- case 'B':
case 'b':
base = 2;
goto uns_integer;
@@ -5036,7 +5035,7 @@ Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV
} while (uv >>= 1);
if (alt) {
esignbuf[esignlen++] = '0';
- esignbuf[esignlen++] = c; /* 'b' or 'B' */
+ esignbuf[esignlen++] = 'b';
}
break;
default: /* it had better be ten or less */