Document the changes with regards to running of END blocks.
[p5sagit/p5-mst-13.2.git] / pod / perllexwarn.pod
index b98e333..4508387 100644 (file)
@@ -207,8 +207,6 @@ The current hierarchy is:
 
   all -+
        |
-       +- chmod
-       |
        +- closure
        |
        +- exiting
@@ -285,8 +283,6 @@ The current hierarchy is:
        |
        +- taint
        |
-       +- umask
-       |
        +- uninitialized
        |
        +- unpack
@@ -325,16 +321,16 @@ and C<join> can all produce a C<"Useless use of xxx in void context">
 warning.
 
     use warnings ;
+
     time ;
+
     {
         use warnings FATAL => qw(void) ;
         length "abc" ;
     }
+
     join "", 1,2,3 ;
+
     print "done\n" ;     
 
 When run it produces this output