mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-11 02:10:35 -08:00
(fill-region-as-paragraph): Fix the test for any
non-ASCII characters, for deciding whether to do kinsoku.
This commit is contained in:
parent
11f23ea2c1
commit
4ab577cd01
1 changed files with 3 additions and 3 deletions
|
|
@ -466,9 +466,9 @@ space does not end a sentence, so don't break a line there."
|
|||
;; Do KINSOKU processing.
|
||||
(if (and enable-multibyte-characters enable-kinsoku
|
||||
(save-excursion
|
||||
(goto-char from)
|
||||
(skip-chars-forward "\0-\177" to)
|
||||
(/= (point) to)))
|
||||
(goto-char (point-min))
|
||||
(skip-chars-forward "\0-\177")
|
||||
(/= (point) (point-max))))
|
||||
(kinsoku linebeg)))
|
||||
|
||||
;; If the left margin and fill prefix by themselves
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue