Hello,
When I was playing with slime profiling interface I encountered some errors:
- CMUCL 18e complained about (profiled-functions, profile-report, profile-reset, unprofile-all, profile-package) symbols not being exported by swank package when I tried entries from slime/profiling menu. I just added missing exports to swank.lisp and it works fine, however I do not know slime code well so it may be not the best solution. I tried this with CLISP 2.32 and my fix helps too. Without the fix i get the following errors:
error in process filter: cond: No frame at point error in process filter: No frame at point
- (slime-unprofile-all) had no effect on CMUCL 18e because it called (profile:unprofile) which is a macro. I replaced it with (eval '(profile:unprofile)) and now it works fine.