summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-07-25 02:39:54 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-07-25 02:39:54 +0000
commit297b36dcf845fc5195afb0a1d7e83d539bb1d4ed (patch)
tree30b23dc3508bb085226219e2c94648f2288d7c6f /opcode.h
parent188ff3c1f17467ccacb0b31f3e13fd49b5b438a7 (diff)
downloadperl-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.h')
-rw-r--r--opcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcode.h b/opcode.h
index f0fcba9fef..513343a52f 100644
--- a/opcode.h
+++ b/opcode.h
@@ -439,7 +439,7 @@ EXT char *PL_op_desc[] = {
"integer addition (+)",
"subtraction (-)",
"integer subtraction (-)",
- "concatenation (.)",
+ "concatenation (.) or string",
"string",
"left bitshift (<<)",
"right bitshift (>>)",
@@ -513,7 +513,7 @@ EXT char *PL_op_desc[] = {
"unpack",
"pack",
"split",
- "join",
+ "join or string",
"list",
"list slice",
"anonymous list ([])",