# HG changeset patch # User Richard M. Stallman # Date 886473475 0 # Node ID 654535610cf7da362bd627aa89ba9eb0f98bc758 # Parent 18188475b33bd5fceb6727949a577a384bdff1ff (fill-region-as-paragraph): Fix the test for any non-ASCII characters, for deciding whether to do kinsoku. diff -r 18188475b33b -r 654535610cf7 lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Mon Feb 02 17:21:49 1998 +0000 +++ b/lisp/textmodes/fill.el Tue Feb 03 02:37:55 1998 +0000 @@ -466,9 +466,9 @@ ;; 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