summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2003-03-18 00:46:18 +0000
committerhv <hv@crypt.org>2003-03-18 00:46:18 +0000
commit1e54a23f69c13441d458c7cf39ddbc3bb8a7079f (patch)
tree32f833f4cf5ed022a795aa3b4419c44adcd0c974 /pp.c
parent6a61d433021b3577bc50df7d2cb1989f13551b88 (diff)
downloadperl-1e54a23f69c13441d458c7cf39ddbc3bb8a7079f.tar.gz
add comment at undef postinc special case
p4raw-id: //depot/perl@19015
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pp.c b/pp.c
index ba6bf07b17..8e496c8267 100644
--- a/pp.c
+++ b/pp.c
@@ -857,6 +857,7 @@ PP(pp_postinc)
else
sv_inc(TOPs);
SvSETMAGIC(TOPs);
+ /* special case for undef: see thread at 2003-03/msg00536.html in archive */
if (!SvOK(TARG))
sv_setiv(TARG, 0);
SETs(TARG);