-
Notifications
You must be signed in to change notification settings - Fork 561
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
perldebguts.pod description of scalar ${"_<$filename"} doesnt match code #14776
Comments
From @bulk88Created by @bulk88This ticket is related to perldebguts says --------------------------------------------------- Each scalar C<${"_<$filename"}> contains C<"_<$filename">. This is This is not true. --------------------------------------------------- print Dumper(${'::_<Peek.c'}); That perldebguts item came from commit The actual C code that determines {SCALAR} contains a normal path and Most shocking is changing gv_fetchfile to store the "_<" path in SCALAR, ------------------------BEFORE---------------------------------- PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS; if (!PL_defstash) if (tmplen <= sizeof smallbuf) ------------------------AFTER---------------------------------- PERL_ARGS_ASSERT_GV_FETCHFILE_FLAGS; if (!PL_defstash) if (tmplen <= sizeof smallbuf) So it seems either the SCALAR part of the "_<" glob is unused by core So my question is, fix the POD to match the code, or fix the code to Perl Info
|
From @rjbs* bulk88 <perlbug-followup@perl.org> [2015-06-26T18:40:56]
Shooting from the hip: fix the docs to match the code. The current behavior Oh, and add a test. :-) -- |
The RT System itself - Status changed from 'new' to 'open' |
Migrated from rt.perl.org#125492 (status was 'open')
Searchable as RT125492$
The text was updated successfully, but these errors were encountered: