emacs-noflet icon indicating copy to clipboard operation
emacs-noflet copied to clipboard

noflet - nic's overriding flet, for fleting functions for the purpose of decorating them

Results 12 emacs-noflet issues
Sort by recently updated
recently updated
newest added

I've just realized that `noflet` evaluates and applies its bindings one at a time, which means that it works more like `cl-flet*` than `flet`. It should evaluate all the bindings...

Is there a way to re-bind commands. Something like? ``` (noflet ((test1 () (interactive) (insert "test1"))) (call-interactively 'test1)) ```