Skip to content

Commit

Permalink
tie a variable; untested
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Jun 7, 2021
1 parent b59587e commit 14cfc78
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/perl5db.pl
Expand Up @@ -1225,6 +1225,16 @@ =head2 SETTING UP THE DEBUGGER GREETING
our ($client_editor);
*emacs = $client_editor if $client_editor; # May be used in afterinit()...

package RenameVariable;
require Tie::Scalar;
our @ISA = qw(Tie::Scalar);
our $message = '$slave_editor deprecated; use $client_editor instead';
sub FETCH { warn $message; }
sub STORE { die $message; }


package DB;

=head2 READING THE RC FILE
The debugger will read a file of initialization options if supplied. If
Expand Down

0 comments on commit 14cfc78

Please sign in to comment.