]> git.eshelyaron.com Git - emacs.git/commitdiff
Setup charset property nospace-between-words.
authorKenichi Handa <handa@m17n.org>
Wed, 21 Oct 1998 11:50:56 +0000 (11:50 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 21 Oct 1998 11:50:56 +0000 (11:50 +0000)
lisp/international/characters.el

index 6df232ef649a71f81abeefa47fc18b48628d6095..b378e9825d78aca029fd572be0f948c488ca8b8b 100644 (file)
     (setq l (cdr l))))
 
 \f
-;; Setup auto-fill-chars for characters that should invoke auto-filling.
-;; SPACE and NEWLIE are already set.
+;; Setup auto-fill-chars for charsets that should invoke auto-filling.
+;; SPACE and NEWLIE are already set.  Also put `nospace-between-words'
+;; property to the charsets.
 (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)
+    (put-charset-property (car l) 'nospace-between-words t)
     (setq l (cdr l))))
 
 ;;; Local Variables: