aggressive-indent-mode icon indicating copy to clipboard operation
aggressive-indent-mode copied to clipboard

aggressive-indent-mode prints "Indenting region...done" all the time

Open KaratasFurkan opened this issue 4 years ago • 2 comments

Hello, as far as I see, there is a part of the code that tries to suppress messages from indent-region function. But it does not work since I moved to Emacs28.

Is there anyone who knows how to fix this part? (it doesn't suppress messages):

(cl-letf (((symbol-function 'message) #'ignore))
    ...)

KaratasFurkan avatar Nov 04 '20 16:11 KaratasFurkan

I also have been experiencing since using Emacs 28.

siraben avatar Nov 05 '20 15:11 siraben

That's probably caused by native compilation. I think that code in native-compiled libraries (.eln) are not affected by defalias and similar mechanisms.

oscarfv avatar Mar 03 '23 21:03 oscarfv