diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-25 02:39:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-07-25 02:39:54 +0000 |
commit | 297b36dcf845fc5195afb0a1d7e83d539bb1d4ed (patch) | |
tree | 30b23dc3508bb085226219e2c94648f2288d7c6f /opcode.pl | |
parent | 188ff3c1f17467ccacb0b31f3e13fd49b5b438a7 (diff) | |
download | perl-297b36dcf845fc5195afb0a1d7e83d539bb1d4ed.tar.gz |
Make the "uninit variable" warning to say "concat or string"
or "join or string" when in concat or join .
Subject: Re: [ID 20000403.009] uninitialised concatenation???
From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
Date: Tue, 04 Apr 2000 18:22:58 +0100
Message-Id: <E12cX2Y-000364-00@taurus.cus.cam.ac.uk>
Subject: [ID 20000330.052] Use of uninitialized value in concatenation (.)
From: William R Ward <hermit@BayView.COM>
Date: Thu, 30 Mar 2000 19:50:03 -0800
Message-Id: <200003310350.TAA13319@komodo.bayview.com>
p4raw-id: //depot/perl@6434
Diffstat (limited to 'opcode.pl')
-rwxr-xr-x | opcode.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -434,7 +434,7 @@ add addition (+) ck_null IfsT2 S S i_add integer addition (+) ck_null ifsT2 S S subtract subtraction (-) ck_null IfsT2 S S i_subtract integer subtraction (-) ck_null ifsT2 S S -concat concatenation (.) ck_concat fsT2 S S +concat concatenation (.) or string ck_concat fsT2 S S stringify string ck_fun fsT@ S left_shift left bitshift (<<) ck_bitop fsT2 S S @@ -533,7 +533,7 @@ hslice hash slice ck_null m@ H L unpack unpack ck_fun @ S S pack pack ck_fun mst@ S L split split ck_split t@ S S S -join join ck_join mst@ S L +join join or string ck_join mst@ S L # List operators. |