-
Notifications
You must be signed in to change notification settings - Fork 555
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
'v' command in 'perl -d' wont work. #18900
Conversation
Subroutine cmd_l() no longer exists. Now we should call cmd_l_main().
Thanks for fixing my mistake. I've manually merged your changes along with a version bump and added some simple tests for 'v' |
@tonycoz, can you mark this for a 5.34.1 maint branch? |
See #19171 for a proper fix with a test. But I forgot to rebase my blead, sorry. Fixing it. Fixed. |
cmd_l was still mentioned in the documentation and comments. Also, there was no test for the "v" command which would test Perl#18900.
cmd_l was still mentioned in the documentation and comments. Also, there was no test for the "v" command which would test Perl#18900.
cmd_l was still mentioned in the documentation and comments. Also, there was no test for the "v" command which would test Perl#18900.
cmd_l was still mentioned in the documentation and comments. Also, there was no test for the "v" command which would test Perl#18900.
cmd_l was still mentioned in the documentation and comments. Also, there was no test for the "v" command which would test Perl#18900.
Q: Any possibility of getting the fixed PM? Or 5.34.1 with a working debugger? |
@tonycoz, you marked this issue Closed on June 22 and put a "backport-5.34" label on it on June 30. But then there were subsequent commits from @choroba. So I'm confused as to where things stand. @steve-m-hay, once we get the questions above clarified, what are the prospects for getting this fix into a perl-5.34.1 maintenance release? |
My changes are not essential, just fixes to the documentation and comments. |
This fix is now in the voting file for 5.34.1, which I hope to release soon. See https://perl5.git.perl.org/perl5.git/commit/45a9bbf39520e5f9fa604855fcffe2cb097fbdac |
I'm trying to convince a company to upgrade from 5.10.1 to 5.34. Having a working debugger would be helpful in convincing them to upgrade -- and continue using Perl at all. |
For the historical record, this did go into 5.34.1 - in b7a355b |
When I was debugging a perl program, I found 'v' command wont work:
the sub cmd_l no longer exists since 10 Aug 2020
commit b7a96fc
.
I changed the name of sub 'cmd_l' to '_cmd_l_main'.