Lars Ingebrigtsen writes: > > e.g. (just a random example) > > > > (defun f (x) (* 2 (+ 1 x))) > > > > (advice-add 'f :around (lambda (orig-f x) (1+ (funcall orig-f x)))) > > > > Instrument `f'. Then M-x edebug-remove-instrumentation gives > > > > "Found no functions to remove instrumentation from". > > This is due to edebug-unwrap* not actually unwrapping something if it > has been advised, apparently... I'm not familiar enough with how edebug > really works to fix that. Stefan, does this patch make sense?