PATCH: perlfunc.pod / warn
authorPeter Scott <Peter@PSDT.com>
Wed, 10 Jan 2007 05:18:52 +0000 (21:18 -0800)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 10 Jan 2007 13:21:03 +0000 (13:21 +0000)
Message-Id: <pan.2007.01.10.13.18.52.834683@PSDT.com>

p4raw-id: //depot/perl@29745

pod/perlfunc.pod

index 6703c6d..85701ea 100644 (file)
@@ -7256,8 +7256,8 @@ This function should have been named wantlist() instead.
 =item warn LIST
 X<warn> X<warning> X<STDERR>
 
-Produces a message on STDERR just like C<die>, but doesn't exit or throw
-an exception.
+Prints the value of LIST to STDERR.  If the last element of LIST does
+not end in a newline, appends the same text as C<die> does.
 
 If LIST is empty and C<$@> already contains a value (typically from a
 previous eval) that value is used after appending C<"\t...caught">