diff --git a/lib/perl5db.pl b/lib/perl5db.pl index 36ce1119ab14..4e155656eb76 100644 --- a/lib/perl5db.pl +++ b/lib/perl5db.pl @@ -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