summaryrefslogtreecommitdiff
path: root/lisp/textmodes/paragraphs.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@is.elta.co.il>2004-02-16 19:35:20 +0000
committerEli Zaretskii <eliz@is.elta.co.il>2004-02-16 19:35:20 +0000
commit279dffd67603744c98614b2cb906a1fc7a5008f6 (patch)
tree914590810aa37a20d292b411f8f235c4aeb0ff1f /lisp/textmodes/paragraphs.el
parent8c094106a849093a750a4a6d29b6006f2cd2ba4b (diff)
downloademacs-279dffd67603744c98614b2cb906a1fc7a5008f6.tar.gz
* net/telnet.el (telnet-interrupt-subjob): Move doc string to the correct place.
* progmodes/icon.el (icon-indent-command): Ditto. * textmodes/paragraphs.el (repunctuate-sentences): Ditto.
Diffstat (limited to 'lisp/textmodes/paragraphs.el')
-rw-r--r--lisp/textmodes/paragraphs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index 0c5d969105f..f7595e24cb5 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -430,9 +430,9 @@ sentences. Also, every paragraph boundary terminates sentences as well."
(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'."
+ (interactive)
(query-replace-regexp "\\([]\"')]?\\)\\([.?!]\\)\\([]\"')]?\\) +"
"\\1\\2\\3 "))