diff options
author | Hugo van der Sanden <hv@crypt.org> | 2003-03-18 00:46:18 +0000 |
---|---|---|
committer | hv <hv@crypt.org> | 2003-03-18 00:46:18 +0000 |
commit | 1e54a23f69c13441d458c7cf39ddbc3bb8a7079f (patch) | |
tree | 32f833f4cf5ed022a795aa3b4419c44adcd0c974 /pp.c | |
parent | 6a61d433021b3577bc50df7d2cb1989f13551b88 (diff) | |
download | perl-1e54a23f69c13441d458c7cf39ddbc3bb8a7079f.tar.gz |
add comment at undef postinc special case
p4raw-id: //depot/perl@19015
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |