fixed issue with Ñyqy phonetics
`setq` sets a variable globally, whereas I only needed it locally. Also fixed wrong phonetics.
This commit is contained in:
parent
9d88842315
commit
037a01105c
6
funcs.el
6
funcs.el
@ -298,8 +298,8 @@ runes during org-mode export"
|
|||||||
("ú" nil nil "u")
|
("ú" nil nil "u")
|
||||||
("i" nil nil "ɪ")
|
("i" nil nil "ɪ")
|
||||||
("u" nil nil "ʊ")
|
("u" nil nil "ʊ")
|
||||||
("é" nil nil "e")
|
("é" nil nil "ø")
|
||||||
("ó" nil nil "o")
|
("ó" nil nil "ɤ")
|
||||||
("e" nil nil "ɛ")
|
("e" nil nil "ɛ")
|
||||||
("o" nil nil "ɔ")
|
("o" nil nil "ɔ")
|
||||||
(" " nil nil " ")
|
(" " nil nil " ")
|
||||||
@ -335,7 +335,7 @@ need-dorsal: initial = 2, sinon t ou nil
|
|||||||
(phon (conlanging//nyqy-get-phoneme consonant curr-phon-list
|
(phon (conlanging//nyqy-get-phoneme consonant curr-phon-list
|
||||||
need-dorsal dorsal)))
|
need-dorsal dorsal)))
|
||||||
(if (eq need-dorsal 2)
|
(if (eq need-dorsal 2)
|
||||||
(setq need-dorsal dorsal))
|
(setq-local need-dorsal dorsal))
|
||||||
(conlanging//nyqy-convert (cdr text)
|
(conlanging//nyqy-convert (cdr text)
|
||||||
(append phonetics
|
(append phonetics
|
||||||
(list phon))
|
(list phon))
|
||||||
|
Reference in New Issue
Block a user