From: Kenichi Handa Date: Mon, 19 Oct 1998 00:40:10 +0000 (+0000) Subject: Setup auto-fill-chars. X-Git-Tag: emacs-20.4~1456 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=df0415c50fac9bf739aa7033ae37471bc7474530;p=emacs.git Setup auto-fill-chars. --- diff --git a/lisp/international/characters.el b/lisp/international/characters.el index ba55a2c7677..6df232ef649 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el @@ -624,7 +624,16 @@ (while l (put-charset-property (car (car l)) 'prefered-coding-system (cdr (car l))) (setq l (cdr l)))) - + + +;; Setup auto-fill-chars for characters that should invoke auto-filling. +;; SPACE and NEWLIE are already set. +(let ((l '(katakana-jisx0201 + japanese-jisx0208 japanese-jisx0212 + chinese-gb2312 chinese-big5-1 chinese-big5-2))) + (while l + (aset auto-fill-chars (make-char (car l)) t) + (setq l (cdr l)))) ;;; Local Variables: ;;; coding: iso-2022-7bit