diff options
| -rw-r--r-- | lisp/international/characters.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index ac6f3b33a29..65f2a8963e8 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el | |||
| @@ -66,11 +66,11 @@ | |||
| 66 | ;; For phonetic classifications. | 66 | ;; For phonetic classifications. |
| 67 | 67 | ||
| 68 | (define-category ?0 "consonant") | 68 | (define-category ?0 "consonant") |
| 69 | (define-category ?1 "base vowel") | 69 | (define-category ?1 "base (independent) vowel") |
| 70 | (define-category ?2 "upper diacritical mark (including upper vowel)") | 70 | (define-category ?2 "upper diacritical mark (including upper vowel)") |
| 71 | (define-category ?3 "lower diacritical mark (including lower vowel)") | 71 | (define-category ?3 "lower diacritical mark (including lower vowel)") |
| 72 | (define-category ?4 "tone mark") | 72 | (define-category ?4 "tone mark") |
| 73 | (define-category ?5 "vowel") | 73 | (define-category ?5 "symbol") |
| 74 | (define-category ?6 "digit") | 74 | (define-category ?6 "digit") |
| 75 | (define-category ?7 "vowel-modifying diacritical mark") | 75 | (define-category ?7 "vowel-modifying diacritical mark") |
| 76 | (define-category ?8 "vowel-signs") | 76 | (define-category ?8 "vowel-signs") |
| @@ -192,7 +192,7 @@ | |||
| 192 | (let ((deflist '(;; chars syntax category | 192 | (let ((deflist '(;; chars syntax category |
| 193 | ("$(5!!!"!#(B" "w" ?7) ; vowel-modifying diacritical mark | 193 | ("$(5!!!"!#(B" "w" ?7) ; vowel-modifying diacritical mark |
| 194 | ; chandrabindu, anuswar, visarga | 194 | ; chandrabindu, anuswar, visarga |
| 195 | ("$(5!$(B-$(5!2(B" "w" ?5) ; independent vowel | 195 | ("$(5!$(B-$(5!2(B" "w" ?1) ; independent vowel |
| 196 | ("$(5!3(B-$(5!X(B" "w" ?0) ; consonant | 196 | ("$(5!3(B-$(5!X(B" "w" ?0) ; consonant |
| 197 | ("$(5!Z(B-$(5!g(B" "w" ?8) ; matra | 197 | ("$(5!Z(B-$(5!g(B" "w" ?8) ; matra |
| 198 | ("$(5!q(B-$(5!z(B" "w" ?6) ; digit | 198 | ("$(5!q(B-$(5!z(B" "w" ?6) ; digit |
| @@ -357,7 +357,7 @@ | |||
| 357 | ("(1XY(B" "w" ?3) ; vowel lower | 357 | ("(1XY(B" "w" ?3) ; vowel lower |
| 358 | ("(1h(B-(1l(B" "w" ?4) ; tone mark | 358 | ("(1h(B-(1l(B" "w" ?4) ; tone mark |
| 359 | ("(1\(B" "w" ?9) ; semivowel lower | 359 | ("(1\(B" "w" ?9) ; semivowel lower |
| 360 | ("(1p(B-(1y(B" "w" ?0) ; digit and misc | 360 | ("(1p(B-(1y(B" "w" ?6) ; digit |
| 361 | ("(1Of(B" "_" ?0) ; symbol | 361 | ("(1Of(B" "_" ?0) ; symbol |
| 362 | )) | 362 | )) |
| 363 | elm chars len syntax category to ch i) | 363 | elm chars len syntax category to ch i) |
| @@ -391,8 +391,8 @@ | |||
| 391 | (",TQT(B-,TWgn(B" "w" ?2) ; vowel upper | 391 | (",TQT(B-,TWgn(B" "w" ?2) ; vowel upper |
| 392 | (",TX(B-,TZ(B" "w" ?3) ; vowel lower | 392 | (",TX(B-,TZ(B" "w" ?3) ; vowel lower |
| 393 | (",Th(B-,Tm(B" "w" ?4) ; tone mark | 393 | (",Th(B-,Tm(B" "w" ?4) ; tone mark |
| 394 | (",TOfp(B-,Ty(B" "w" ?0) ; digit and misc | 394 | (",Tp(B-,Ty(B" "w" ?6) ; digit |
| 395 | (",T_oz{(B" "_" ?0) ; symbol | 395 | (",TOf_oz{(B" "_" ?5) ; symbol |
| 396 | )) | 396 | )) |
| 397 | elm chars len syntax category to ch i) | 397 | elm chars len syntax category to ch i) |
| 398 | (while deflist | 398 | (while deflist |