(cjk-char-width-table): Add cp932-2-byte.

This commit is contained in:
Kenichi Handa 2009-03-17 07:16:29 +00:00
parent b613b1dcc8
commit 44ded02464
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-03-17 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
* international/characters.el (cjk-char-width-table): Add
cp932-2-byte.
2009-03-17 Chong Yidong <cyd@stupidchicken.com>
* minibuffer.el (minibuffer-complete-and-exit): Doc fix.

View file

@ -1031,7 +1031,7 @@ Combining diacritic or mark (Unicode General Category M)")
(defvar cjk-char-width-table
(let ((table (make-char-table nil)))
(dolist (charset '(big5 chinese-gb2312 chinese-cns11643-1
japanese-jisx0208 korean-ksc5601))
japanese-jisx0208 cp932-2-byte korean-ksc5601))
(map-charset-chars #'(lambda (range arg)
(set-char-table-range table range 2))
charset))