Re: emacs-unicode-2: some of the full-width characters should have a ?\| property

2006-11-09 Thread Kenichi Handa
In article <[EMAIL PROTECTED]>, Zhang Wei <[EMAIL PROTECTED]> writes:

> Kenichi Handa <[EMAIL PROTECTED]> writes:
>>> ! (modify-category-entry elt ?\|)))
> >   
> > This is questionable.  At least, shouldn't we exclude Hangul?

> I don't konw korean, does Hangul has a different char break rule?

Try C-u C-h t korean RET.  It seems words are separated by a
space.

---
Kenichi Handa
[EMAIL PROTECTED]


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: emacs-unicode-2: some of the full-width characters should have a ?\| property

2006-11-08 Thread Zhang Wei
Kenichi Handa <[EMAIL PROTECTED]> writes:

>> ! (modify-category-entry elt ?\|)))
>   
> This is questionable.  At least, shouldn't we exclude Hangul?

I don't konw korean, does Hangul has a different char break rule?


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: emacs-unicode-2: some of the full-width characters should have a ?\| property

2006-11-08 Thread Kenichi Handa
In article <[EMAIL PROTECTED]>, Zhang Wei <[EMAIL PROTECTED]> writes:

> Perhaps we should do this:
[...]
> +(#x2010 . #x2027)
> +(#x2030 . #x205E)

For them, I've wrote in the previous mail.

[...]
> +(#xFF01 . #xFF60)

This is already committed.

> ! (modify-category-entry elt ?\|)))
  
This is questionable.  At least, shouldn't we exclude
Hangul?

---
Kenichi Handa
[EMAIL PROTECTED]


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


emacs-unicode-2: some of the full-width characters should have a ?\| property

2006-10-28 Thread Zhang Wei

Perhaps we should do this:

*** c:/Emacs/lisp/international/characters.el   Thu Oct 26 23:03:06 2006
--- d:/download/emacs--unicode--0/lisp/international/characters.el  Sun Oct 
29 00:42:10 2006
***
*** 1013,1029 
  
  ;; 2: East Asian Wide and Full-width characters.
  (let ((l '((#x1100 . #x115F)
   (#x2329 . #x232A)
   (#x2E80 . #x303E)
   (#x3040 . #xA4CF)
   (#xAC00 . #xD7A3)
   (#xF900 . #xFAFF)
   (#xFE30 . #xFE6F)
   (#xFFE0 . #xFFE6)
   (#x2 . #x2)
   (#x3 . #x3
(dolist (elt l)
! (set-char-table-range char-width-table elt 2)))
  
  ;; Other double width
  ;;(map-charset-chars
--- 1013,1033 
  
  ;; 2: East Asian Wide and Full-width characters.
  (let ((l '((#x1100 . #x115F)
+  (#x2010 . #x2027)
+  (#x2030 . #x205E)
   (#x2329 . #x232A)
   (#x2E80 . #x303E)
   (#x3040 . #xA4CF)
   (#xAC00 . #xD7A3)
   (#xF900 . #xFAFF)
   (#xFE30 . #xFE6F)
+  (#xFF01 . #xFF60)
   (#xFFE0 . #xFFE6)
   (#x2 . #x2)
   (#x3 . #x3
(dolist (elt l)
! (set-char-table-range char-width-table elt 2)
! (modify-category-entry elt ?\|)))
  
  ;; Other double width
  ;;(map-charset-chars


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug