From: Gurusamy Sarathy Date: Fri, 17 Mar 2000 03:40:14 +0000 (+0000) Subject: s/:def/:DEFAULT/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9bafe919456add7d4f89eb1ecafa8a6b4491ea91;p=p5sagit%2Fp5-mst-13.2.git s/:def/:DEFAULT/ p4raw-id: //depot/perl@5775 --- diff --git a/lib/open.pm b/lib/open.pm index a845459..cdd20ac 100644 --- a/lib/open.pm +++ b/lib/open.pm @@ -56,12 +56,12 @@ When they are eventually supported, this pragma will serve as one of the interfaces to declare default disciplines for all I/O. In future, any default disciplines declared by this pragma will be -available by the special discipline name ":def", and could be used +available by the special discipline name ":DEFAULT", and could be used within handle constructors that allow disciplines to be specified. This would make it possible to stack new disciplines over the default ones. - open FH, "<:para :def", $file or die "can't open $file: $!"; + open FH, "<:para :DEFAULT", $file or die "can't open $file: $!"; Socket and directory handles will also support disciplines in future.