On Thu 15 Aug 2019 at 20:11, Noam Postavsky wrote: > Alex Branham writes: > > Note that the checkdoc-autofix-ask-replace is already replacing the > newline with a space (which is kind of a strange behaviour, IMO, but > that's how it is currently), so I'm not sure it makes much sense to call > delete-indentation after. Ah, indeed. Starting with this buffer: (defun foo () "bla bla bla." ) (defun foo () "Bla bla bla bla. More words bla bla bla.") If we just remove the call to delete-indentation we wind up with: (defun foo () "Bla bla bla." ) (defun foo () "Bla bla bla bla. More words bla bla bla.") So perhaps the we just remove that bit? Updated patch attached. Alex