From d320a41dbf4b6849f4b37b37fd7c9c6fea3a417f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 23 May 2003 12:46:38 +0000 Subject: [PATCH] (repunctuate-sentences): New function. --- lisp/textmodes/paragraphs.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el index dfec0acfd46..735eeca3e2a 100644 --- a/lisp/textmodes/paragraphs.el +++ b/lisp/textmodes/paragraphs.el @@ -420,6 +420,14 @@ sentences. Also, every paragraph boundary terminates sentences as well." (setq arg (1- arg))) (constrain-to-field nil opoint t))) +(defun repunctuate-sentences () + (interactive) + "Put two spaces at the end of sentences from point to the end of buffer. +It works using `query-replace-regexp'." + (query-replace-regexp "\\([]\"')]?\\)\\([.?!]\\)\\([]\"')]?\\) +" + "\\1\\2\\3 ")) + + (defun backward-sentence (&optional arg) "Move backward to start of sentence. With arg, do it arg times. See `forward-sentence' for more information." -- 2.39.2