Function: repunctuate-sentences-filter
repunctuate-sentences-filter is a byte-compiled function defined in
paragraphs.el.gz.
Signature
(repunctuate-sentences-filter START END)
Documentation
Search filter used by repunctuate-sentences to skip unneeded spaces.
By default, it skips occurrences that already have two spaces.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/paragraphs.el.gz
(defun repunctuate-sentences-filter (_start _end)
"Search filter used by `repunctuate-sentences' to skip unneeded spaces.
By default, it skips occurrences that already have two spaces."
(/= 2 (- (point) (save-excursion (skip-chars-backward " ") (point)))))