From: Rafael Garcia-Suarez Date: Thu, 22 Mar 2007 14:45:36 +0000 (+0000) Subject: Misc. L<> fixes in core docs : don't link to man pages; X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f979aebcf2bd35d620f0ca3623215cc1355f26d9;p=p5sagit%2Fp5-mst-13.2.git Misc. L<> fixes in core docs : don't link to man pages; provide full urls when linking to web sites. p4raw-id: //depot/perl@30688 --- diff --git a/pod/perlipc.pod b/pod/perlipc.pod index a60a082..f027d23 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -543,7 +543,7 @@ output doesn't wind up on the user's terminal). The fork() has to come before the setsid() to ensure that you aren't a process group leader (the setsid() will fail if you are). If your system doesn't have the setsid() function, open F and use the -C ioctl() on it instead. See L for details. +C ioctl() on it instead. See tty(4) for details. Non-Unix users should check their Your_OS::Process module for other solutions. diff --git a/pod/perllocale.pod b/pod/perllocale.pod index 3624903..a0962fc 100644 --- a/pod/perllocale.pod +++ b/pod/perllocale.pod @@ -177,7 +177,7 @@ subsequent call to setlocale(). If no second argument is provided and the category is LC_ALL, the result is implementation-dependent. It may be a string of concatenated locales names (separator also implementation-dependent) -or a single locale name. Please consult your L for +or a single locale name. Please consult your setlocale(3) man page for details. If a second argument is given and it corresponds to a valid locale, @@ -197,11 +197,11 @@ be noticed, depending on your system's C library. If the second argument does not correspond to a valid locale, the locale for the category is not changed, and the function returns I. -For further information about the categories, consult L. +For further information about the categories, consult setlocale(3). =head2 Finding locales -For locales available in your system, consult also L to +For locales available in your system, consult also setlocale(3) to see whether it leads to the list of available locales (search for the I section). If that fails, try the following command lines: @@ -289,7 +289,7 @@ than the PERL_BADLANG approach, but setting LC_ALL (or other locale variables) may affect other programs as well, not just Perl. In particular, external programs run from within Perl will see these changes. If you make the new settings permanent (read on), all -programs you run see the changes. See L for +programs you run see the changes. See L<"ENVIRONMENT"> for the full list of relevant environment variables and L for their effects in Perl. Effects in other programs are easily deducible. For example, the variable LC_COLLATE may well affect diff --git a/pod/perlpacktut.pod b/pod/perlpacktut.pod index d907b18..7c52d64 100644 --- a/pod/perlpacktut.pod +++ b/pod/perlpacktut.pod @@ -623,7 +623,7 @@ characters that are used in several European languages is in the next range, up to 255. After some more Latin extensions we find the character sets from languages using non-Roman alphabets, interspersed with a variety of symbol sets such as currency symbols, Zapf Dingbats or Braille. -(You might want to visit L for a look at some of +(You might want to visit L for a look at some of them - my personal favourites are Telugu and Kannada.) The Unicode character sets associates characters with integers. Encoding @@ -668,7 +668,7 @@ sequences and generally have a friendlier interface. The pack code C has been added to support a portable binary data encoding scheme that goes way beyond simple integers. (Details can -be found at L, the Scarab project.) A BER (Binary Encoded +be found at L, the Scarab project.) A BER (Binary Encoded Representation) compressed unsigned integer stores base 128 digits, most significant digit first, with as few digits as possible. Bit eight (the high bit) is set on each byte except the last. There