mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-06 14:02:07 -08:00
Setup auto-fill-chars.
This commit is contained in:
parent
11e60d924c
commit
df0415c50f
1 changed files with 10 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue