Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perlapi: Fix description of my_strftime() #22313

Merged
merged 1 commit into from
Jun 25, 2024
Merged
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
10 changes: 6 additions & 4 deletions locale.c
Original file line number Diff line number Diff line change
Expand Up @@ -8122,12 +8122,14 @@ S<C<SV *>>.
This means the UTF-8ness of the result is unspecified. The result MUST be
arranged to be FREED BY THE CALLER).

=item It has extra parameters C<yday>, C<wday> and C<is_dst>.
=item The C<is_dst> parameter is ignored.

These are completely ignored, and exist only for historical reasons.
Daylight savings time is never considered to be in effect.

Daylight savings time is never considered to be in effect, and C<yday> and
C<wday> are calculated from the other arguments.
=item It has extra parameters C<yday> and C<wday> that are ignored.

These exist only for historical reasons; the values for the corresponding
fields in S<C<struct tm>> are calculated from the other arguments.

=back

Expand Down
Loading