>From b109bbf949e2470ccf6646caf2937fdeea178d03 Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Thu, 9 Aug 2012 11:56:13 +1200 Subject: [PATCH] [quail] Add IPA input for reversed epsilon IPA vowel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "ɜ" is the IPA open-mid central unrounded vowel, for which there was no input method in ipa mode. The combination "\E" is obvious for this, since "E" is the epsilon ("ɛ") and "\" is the upside-down modifier. Signed-off-by: Douglas Bagnall --- leim/quail/ipa.el | 1 + 1 file changed, 1 insertion(+) diff --git a/leim/quail/ipa.el b/leim/quail/ipa.el index b29a6ff..3b53ba8 100644 --- a/leim/quail/ipa.el +++ b/leim/quail/ipa.el @@ -44,6 +44,7 @@ Upside-down characters are obtained by a preceding slash (/)." ("e" ?e) ("/3" ?ɛ) ("E" ?ɛ) + ("/E" ?ɜ) ("ae" ?æ) ("a" ?a) ("i-" ?ɨ) -- 1.7.9.5