# HG changeset patch # User John W. Eaton # Date 1523419090 14400 # Node ID d12271fe1504ce5d084d0c52d037918e2031582b # Parent c80323fe49389dd54d4948923bedbf257a66c9d1 fix cut/paste error in previous change (bug #53599) * symrec.h (symbol_record::symbol_record_rep::unbind_global_rep): Forward to unbind_global_rep, not unbind_fwd_rep. diff -r c80323fe4938 -r d12271fe1504 libinterp/corefcn/symrec.h --- a/libinterp/corefcn/symrec.h Tue Apr 10 22:22:37 2018 -0400 +++ b/libinterp/corefcn/symrec.h Tue Apr 10 23:58:10 2018 -0400 @@ -528,7 +528,7 @@ m_fwd_rep.reset (); } else - t_fwd_rep->unbind_fwd_rep (); + t_fwd_rep->unbind_global_rep (); } }