diff options
| author | Eli Zaretskii | 2011-08-23 17:45:14 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-08-23 17:45:14 +0300 |
| commit | bca633fb296b17c0e86d589c50fb3414b361e0b3 (patch) | |
| tree | 1b1e93f6017f7614f6aa950fa78ced1249a99b99 /admin | |
| parent | 4a5885a74a3310ed4f4ba86eee3c406019b2c334 (diff) | |
| download | emacs-bca633fb296b17c0e86d589c50fb3414b361e0b3.tar.gz emacs-bca633fb296b17c0e86d589c50fb3414b361e0b3.zip | |
Followup for character properties in 2011-08-23T11:48:07Z!handa@m17n.org.
src/bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
a character.
admin/unidata/unidata-gen.el (unidata-prop-alist): Update the default
values of bidi-class according to DerivedBidiClass.txt from the
latest UCD.
lisp/international/uni-bidi.el: Regenerated.
doc/lispref/nonascii.texi (Character Properties): Document the values for
unassigned codepoints.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 6 | ||||
| -rw-r--r-- | admin/unidata/unidata-gen.el | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index f8eb071d96d..17cbcbb3bdf 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-08-23 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * unidata/unidata-gen.el (unidata-prop-alist): Update the default | ||
| 4 | values of bidi-class according to DerivedBidiClass.txt from the | ||
| 5 | latest UCD. | ||
| 6 | |||
| 1 | 2011-08-23 Kenichi Handa <handa@m17n.org> | 7 | 2011-08-23 Kenichi Handa <handa@m17n.org> |
| 2 | 8 | ||
| 3 | * unidata/unidata-gen.el (unidata-prop-alist): Provide default | 9 | * unidata/unidata-gen.el (unidata-prop-alist): Provide default |
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el index 03399eae213..1002bb003af 100644 --- a/admin/unidata/unidata-gen.el +++ b/admin/unidata/unidata-gen.el | |||
| @@ -194,7 +194,11 @@ Property value is one of the following symbols: | |||
| 194 | L, LRE, LRO, R, AL, RLE, RLO, PDF, EN, ES, ET, | 194 | L, LRE, LRO, R, AL, RLE, RLO, PDF, EN, ES, ET, |
| 195 | AN, CS, NSM, BN, B, S, WS, ON" | 195 | AN, CS, NSM, BN, B, S, WS, ON" |
| 196 | unidata-describe-bidi-class | 196 | unidata-describe-bidi-class |
| 197 | (L (#x0600 #x06FF AL) (#x0590 #x05FF R) (#x07C0 #x08FF R) | 197 | ;; The assignment of default values to blocks of code points |
| 198 | ;; follows the file DerivedBidiClass.txt from the Unicode | ||
| 199 | ;; Character Database (UCD). | ||
| 200 | (L (#x0600 #x06FF AL) (#xFB50 #xFDFF AL) (#xFE70 #xFEFF AL) | ||
| 201 | (#x0590 #x05FF R) (#x07C0 #x08FF R) | ||
| 198 | (#xFB1D #xFB4F R) (#x10800 #x10FFF R) (#x1E800 #x1EFFF R)) | 202 | (#xFB1D #xFB4F R) (#x10800 #x10FFF R) (#x1E800 #x1EFFF R)) |
| 199 | ;; The order of elements must be in sync with bidi_type_t in | 203 | ;; The order of elements must be in sync with bidi_type_t in |
| 200 | ;; src/dispextern.h. | 204 | ;; src/dispextern.h. |