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:
Lucien Cartier-Tilet 2019-11-15 15:40:37 +01:00
parent 9d88842315
commit 037a01105c
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 3 additions and 3 deletions

View File

@ -298,8 +298,8 @@ runes during org-mode export"
("ú" nil nil "u")
("i" nil nil "ɪ")
("u" nil nil "ʊ")
("é" nil nil "e")
("ó" nil nil "o")
("é" nil nil "ø")
("ó" nil nil "ɤ")
("e" nil nil "ɛ")
("o" 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
need-dorsal dorsal)))
(if (eq need-dorsal 2)
(setq need-dorsal dorsal))
(setq-local need-dorsal dorsal))
(conlanging//nyqy-convert (cdr text)
(append phonetics
(list phon))