diff options
author | Stephen Leake <stephen_leake@stephe-leake.org> | 2019-09-18 17:43:28 -0700 |
---|---|---|
committer | Stephen Leake <stephen_leake@stephe-leake.org> | 2019-09-18 17:43:28 -0700 |
commit | 34f1035e878a06ad181ff7fc533cd1fa0a565847 (patch) | |
tree | 7708b0e62b09571ba5b2c625d810cd932c380508 /lisp/leim | |
parent | b478444099655f36f7b243e21e8f98051299ca8f (diff) | |
parent | 107ce3050fc37b9a13d8304ae1bb73fac9de5f61 (diff) | |
download | emacs-34f1035e878a06ad181ff7fc533cd1fa0a565847.tar.gz emacs-34f1035e878a06ad181ff7fc533cd1fa0a565847.tar.bz2 emacs-34f1035e878a06ad181ff7fc533cd1fa0a565847.zip |
Merge commit '107ce3050fc37b9a13d8304ae1bb73fac9de5f61'
Diffstat (limited to 'lisp/leim')
-rw-r--r-- | lisp/leim/quail/ipa-praat.el | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/lisp/leim/quail/ipa-praat.el b/lisp/leim/quail/ipa-praat.el index 74a2dccc060..169dbcf0e22 100644 --- a/lisp/leim/quail/ipa-praat.el +++ b/lisp/leim/quail/ipa-praat.el @@ -148,7 +148,14 @@ input | example | description \\'1 | ˈ | primary stress \\'2 | ˌ | secondary stress \\cn | t̚ | unreleased plosive -\\rh | ɜ˞ | rhotacized vowel +\\hr | ɜ˞ | rhotacized vowel +\\^h | ʰ | aspiration +\\^H | ʱ | voiced aspiration +\\^w | ʷ | labialized, rounded +\\^j | ʲ | palatalized +\\^g | ˠ | velarized +\\^9 | ˤ | pharyngealized + - Understrikes @@ -168,7 +175,7 @@ input | example | description \\Uv | d̺ | apical \\Dv | d̻ | laminal \\nv | u̯ | nonsyllabic -\\e3v | e̹ | slightly rounded +\\3v | e̹ | slightly rounded \\cv | u̜ | slightly unrounded - Overstrikes @@ -176,14 +183,14 @@ input | example | description input | example | description ------+---------+-------------------------------------------- \\0^ | ɣ̊ | voiceless -\\'^ | | high tone -\\`^ | | low tone -\\-^ | | mid tone -\\~^ | | nasalized -\\v^ | | rising tone -\\^^ | | falling tone -\\:^ | | centralized -\\N^ | | short +\\'^ | é | high tone +\\`^ | è | low tone +\\-^ | ē | mid tone +\\~^ | ẽ | nasalized +\\v^ | ě | rising tone +\\^^ | ê | falling tone +\\:^ | ë | centralized +\\N^ | ĕ | short \\li | k͡p | simultaneous articulation or single segment " nil t nil nil nil nil nil nil nil nil t) @@ -308,7 +315,13 @@ input | example | description ("\\'1" ?ˈ) ; primary stress ("\\'2" ?ˌ) ; secondary stress ("\\cn" #x031A) ; t̚ unreleased plosive - ("\\rh" #x02DE) ; ɜ˞ rhotacized vowel + ("\\hr" #x02DE) ; ɜ˞ rhotacized vowel + ("\\^h" ?ʰ) ; ʰ aspiration (usually following a plosive) + ("\\^H" ?ʱ) ; ʱ voiced aspiration (usually following a plosive) + ("\\^w" ?ʷ) ; labialized + ("\\^j" ?ʲ) ; palatalized + ("\\^g" ?ˠ) ; velarized + ("\\^9" ?ˤ) ; pharyngealized ("\\|v" #x0329) ; n̩ syllabic consonant ("\\0v" #x0325) ; b̥ voiceless @@ -324,7 +337,7 @@ input | example | description ("\\Uv" #x033A) ; d̺ apical ("\\Dv" #x033B) ; d̻ laminal ("\\nv" #x032F) ; u̯ nonsyllabic - ("\\e3v" #x0339) ; e̹ slightly rounded + ("\\3v" #x0339) ; e̹ slightly rounded ("\\cv" #x031C) ; u̜ slightly unrounded ("\\0^" #x030A) ; ɣ̊ voiceless |