This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlvar.pod: suggest string comparisons for $]
[perl5.git] / pod / perlinterp.pod
index 5d16e8b..bb559ba 100644 (file)
@@ -363,7 +363,7 @@ Let's take an example of manipulating a PV, from C<sv_catpvn>, in
 F<sv.c>
 
      1  void
-     2  Perl_sv_catpvn(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
+     2  Perl_sv_catpvn(pTHX_ SV *sv, const char *ptr, STRLEN len)
      3  {
      4      STRLEN tlen;
      5      char *junk;
@@ -696,7 +696,7 @@ stack implements the C equivalent of, for example:
         ...
     }
 
-See L<perlguts/Localising Changes> for how to use the save stack.
+See L<perlguts/"Localizing changes"> for how to use the save stack.
 
 =head1 MILLIONS OF MACROS