# HG changeset patch # User Rik # Date 1674799427 28800 # Node ID 2891372cce9f3be03c32dc69677196e054d638e4 # Parent 5431cd68f48a6cd0678def3f7aec43f19e9cc418 main-window.cc: Use consistent feval calling convention. * main-window.cc (profiler_session, profiler_session_resume, profiler_stop): Use "interp.feval (...)" rather than "Ffeval (interp, ...)". diff -r 5431cd68f48a -r 2891372cce9f libgui/src/main-window.cc --- a/libgui/src/main-window.cc Thu Jan 26 21:50:32 2023 -0800 +++ b/libgui/src/main-window.cc Thu Jan 26 22:03:47 2023 -0800 @@ -1949,8 +1949,7 @@ ([=] (interpreter& interp) { // INTERPRETER THREAD - - Ffeval (interp, ovl ("profile","on")); + interp.feval (ovl ("profile", "on")); }); } @@ -1960,8 +1959,7 @@ ([=] (interpreter& interp) { // INTERPRETER THREAD - - Ffeval (interp, ovl ("profile","resume")); + interp.feval (ovl ("profile", "resume")); }); } @@ -1971,8 +1969,7 @@ ([=] (interpreter& interp) { // INTERPRETER THREAD - - Ffeval (interp, ovl ("profile","off")); + interp.feval (ovl ("profile", "off")); }); }