Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion handy.h
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ That is, each returns a boolean indicating whether the specified character is
one of C<[A-Za-z0-9]>, analogous to C<m/[[:alnum:]]/>.

The C<C> suffix in the names was meant to indicate that they correspond to the
C language L<C<isalnum(3)>>.
C language C<L<isalnum(3)>>.

=for apidoc Am|bool|isASCII|UV ch
=for apidoc_item ||isASCII_A|UV ch
Expand Down
4 changes: 2 additions & 2 deletions locale.c
Original file line number Diff line number Diff line change
Expand Up @@ -4423,7 +4423,7 @@ S_native_querylocale_i(pTHX_ const locale_category_index cat_index)
/*
=for apidoc Perl_setlocale

This is an (almost) drop-in replacement for the system L<C<setlocale(3)>>,
This is an (almost) drop-in replacement for the system C<L<setlocale(3)>>,
taking the same parameters, and returning the same information, except that it
returns the correct underlying C<LC_NUMERIC> locale. Regular C<setlocale> will
instead return C<C> if the underlying locale has a non-dot decimal point
Expand Down Expand Up @@ -10826,7 +10826,7 @@ change the locale (though changing the locale is antisocial and dangerous on
multi-threaded systems that don't have multi-thread safe locale operations.
(See L<perllocale/Multi-threaded operation>).

Using the libc L<C<setlocale(3)>> function should be avoided. Nevertheless,
Using the libc C<L<setlocale(3)>> function should be avoided. Nevertheless,
certain non-Perl libraries called from XS, do call it, and their behavior may
not be able to be changed. This function, along with
C<L</switch_to_global_locale>>, can be used to get seamless behavior in these
Expand Down
2 changes: 1 addition & 1 deletion numeric.c
Original file line number Diff line number Diff line change
Expand Up @@ -1516,7 +1516,7 @@ Perl_my_atof(pTHX_ const char* s)
=for apidoc my_atof
=for apidoc_item Atof

These each are L<C<atof>(3)>, but properly work with Perl locale handling,
These each are C<L<atof(3)>>, but properly work with Perl locale handling,
accepting a dot radix character always, but also the current locale's radix
character if and only if called from within the lexical scope of a Perl C<use
locale> statement.
Expand Down
Loading