]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blobdiff - lib/Scope/Upper.pm
Rename CURRENT to HERE
[perl/modules/Scope-Upper.git] / lib / Scope / Upper.pm
index 3c641ac5c813f45a2d22530ec5db19dc828ed8f2..ca8ecc98638cb6f05c2375d622c25271410d39be 100644 (file)
@@ -142,7 +142,7 @@ C<$key> is ignored.
 
 Returns the level that currently represents the highest scope.
 
-=head2 C<CURRENT>
+=head2 C<HERE>
 
 The current level - i.e. C<0>.
 
@@ -168,7 +168,7 @@ If C<$from> is omitted in any of those functions, the current level is used as t
 
 The functions L</reap>, L</localize>, L</localize_elem> and L</localize_delete> are only exported on request, either individually or by the tags C<':funcs'> and C<':all'>.
 
-Same goes for the words L</TOP>, L</CURRENT>, L</UP>, L</DOWN>, L</SUB> and L</EVAL> that are only exported on request, individually or by the tags C<':words'> and C<':all'>.
+Same goes for the words L</TOP>, L</HERE>, L</UP>, L</DOWN>, L</SUB> and L</EVAL> that are only exported on request, individually or by the tags C<':words'> and C<':all'>.
 
 =cut
 
@@ -177,7 +177,7 @@ use base qw/Exporter/;
 our @EXPORT      = ();
 our %EXPORT_TAGS = (
  funcs => [ qw/reap localize localize_elem localize_delete/ ],
- words => [ qw/TOP CURRENT UP DOWN SUB EVAL/ ],
+ words => [ qw/TOP HERE UP DOWN SUB EVAL/ ],
 );
 our @EXPORT_OK   = map { @$_ } values %EXPORT_TAGS;
 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];