# HG changeset patch # User Kenichi Handa # Date 945219128 0 # Node ID 182d67795a5b3ddf5398013554b9d591295fbdd8 # Parent 9895d3c3e7ceb432a9c845c69526be7fe93132e9 (fill-find-break-point): Delete codes for composite characters. (fill-region-as-paragraph): Likewise. diff -r 9895d3c3e7ce -r 182d67795a5b lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Wed Dec 15 00:50:58 1999 +0000 +++ b/lisp/textmodes/fill.el Wed Dec 15 00:52:08 1999 +0000 @@ -295,13 +295,9 @@ (if (eq charset 'ascii) (setq ch (preceding-char) charset (char-charset ch))) - (if (eq charset 'ascii) - nil - (if (eq charset 'composition) - (setq charset (char-charset (composite-char-component ch 0))))) - (setq func (get-charset-property charset 'fill-find-break-point-function)) - (if (and func (fboundp func)) - (funcall func limit)))) + (setq func (get-charset-property charset 'fill-find-break-point-function)) + (if (and func (fboundp func)) + (funcall func limit)))) (defun fill-region-as-paragraph (from to &optional justify nosqueeze squeeze-after) @@ -445,10 +441,6 @@ (while (search-forward "\n" nil t) (let ((prev (char-before (match-beginning 0))) (next (following-char))) - (if (cmpcharp prev) - (setq prev (composite-char-component prev 0))) - (if (cmpcharp next) - (setq next (composite-char-component next 0))) (if (and (or (aref (char-category-set next) ?|) (aref (char-category-set prev) ?|)) (or (get-charset-property (char-charset prev)