mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
*** empty log message ***
This commit is contained in:
parent
d9330f43f4
commit
ff69c4ee0c
@ -50,7 +50,7 @@ Returns non-nil if CH is Tibetan. Otherwise, returns nil."
|
||||
(i 0)
|
||||
ch this-trans)
|
||||
(while (< i len)
|
||||
(let ((idx (string-match tibetan-precomposition-rule-alist str i)))
|
||||
(let ((idx (string-match tibetan-precomposition-rule-regexp str i)))
|
||||
(if (eq idx i)
|
||||
;; Ith character and the followings matches precomposable
|
||||
;; Tibetan sequence.
|
||||
@ -116,13 +116,13 @@ The returned string has no composition information."
|
||||
;;; (Sanskrit visarga, though it is a vowel modifier, is considered
|
||||
;;; to be a punctuation.)
|
||||
;;;
|
||||
;;; Here are examples of the words "bsgrubs" and "h'uM"
|
||||
;;; Here are examples of the words "bsgrubs" and "hfauM"
|
||||
;;;
|
||||
;;; 4$(7"70"714%qx!"U0"G###C"U14"70"714"G0"G1(B 4$(7"Hx!"Rx!"Ur'"_0"H"A"U"_1(B
|
||||
;;; 4$(7"70"714%qx!"U0"G###C"U14"70"714"G0"G1(B 4$(7"Hx!"Rx!"Ur'"_0"H"R"U"_1(B
|
||||
;;;
|
||||
;;; M
|
||||
;;; b s b s h
|
||||
;;; g '
|
||||
;;; g fa
|
||||
;;; r u
|
||||
;;; u
|
||||
;;;
|
||||
@ -153,8 +153,9 @@ The returned string has no composition information."
|
||||
;; Added by Tomabechi 2000/06/08
|
||||
(if (memq char '(?$(7"T(B ?$(7"V(B ?$(7"W(B ?$(7"X(B ?$(7"Y(B ?$(7"Z(B ?$(7"b(B))
|
||||
(setq comp-vowel
|
||||
(cddr (assoc (char-to-string char)
|
||||
tibetan-composite-vowel-alist))
|
||||
(copy-sequence
|
||||
(cddr (assoc (char-to-string char)
|
||||
tibetan-composite-vowel-alist)))
|
||||
char
|
||||
(cadr (assoc (char-to-string char)
|
||||
tibetan-composite-vowel-alist))))
|
||||
|
Loading…
Reference in New Issue
Block a user