Function: gnus-article-edit-full-stops
gnus-article-edit-full-stops is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(gnus-article-edit-full-stops)
Documentation
Interactively repair spacing at end of sentences.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-edit-full-stops ()
"Interactively repair spacing at end of sentences."
(interactive nil gnus-article-mode)
(save-excursion
(goto-char (point-min))
(search-forward-regexp "^$" nil t)
(let ((case-fold-search nil))
(query-replace-regexp "\\([.!?][])}]* \\)\\([[({A-Z]\\)" "\\1 \\2"))))