/ Published in: Emacs Lisp
Delete doubled newlines from the current buffer. Only works on completely empty lines, not lines that contain whitespace.
Expand |
Embed | Plain Text
;;;KILL-BLANK-LINE function (defun undouble-newline () "Delete doubled newlines from the current buffer." (interactive) (save-excursion (replace-regexp "\n\n" "\n")))
You need to login to post a comment.
