diff options
| -rw-r--r-- | lisp/textmodes/fill.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index d430ad0bc5c..1b50e1e84d9 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el | |||
| @@ -466,9 +466,9 @@ space does not end a sentence, so don't break a line there." | |||
| 466 | ;; Do KINSOKU processing. | 466 | ;; Do KINSOKU processing. |
| 467 | (if (and enable-multibyte-characters enable-kinsoku | 467 | (if (and enable-multibyte-characters enable-kinsoku |
| 468 | (save-excursion | 468 | (save-excursion |
| 469 | (goto-char from) | 469 | (goto-char (point-min)) |
| 470 | (skip-chars-forward "\0-\177" to) | 470 | (skip-chars-forward "\0-\177") |
| 471 | (/= (point) to))) | 471 | (/= (point) (point-max)))) |
| 472 | (kinsoku linebeg))) | 472 | (kinsoku linebeg))) |
| 473 | 473 | ||
| 474 | ;; If the left margin and fill prefix by themselves | 474 | ;; If the left margin and fill prefix by themselves |