From: Kierin Bell <fernseed@fernseed.me>
To: 75448@debbugs.gnu.org
Subject: bug#75448: [PATCH] Fix documentation of Iroquoian input methods
Date: Wed, 08 Jan 2025 19:39:12 -0500 [thread overview]
Message-ID: <87cygwom6n.fsf@fernseed.me> (raw)
[-- Attachment #1: Type: text/plain, Size: 657 bytes --]
Tags: patch
This patch fixes a typo in the documentation for Iroquoian input methods
for the Oneida endonym, propagated by copy-paste into comments,
docstrings, and the NEWS entry. The previous spelling 'Onʌyota:ká:' was
missing the third syllable and also used an idiosyncratic orthography.
There are two common orthographic variants that I've seen:
'Onʌyote’a·ká·' (common in community language programs) and
'Onyotaˀa·ká·' (used in Karin Michelson's 2002
'Oneida-English/English-Oneida Dictionary'). I opted for the former.
There is also a small fix for an incorrect input key given in one of the
input method docstrings.
[-- Attachment #2: 0001-Fix-documentation-of-Iroquoian-input-methods.patch --]
[-- Type: text/patch, Size: 4145 bytes --]
From 0fa5f6498e381a60066455595858bbf72c7428c4 Mon Sep 17 00:00:00 2001
From: Kierin Bell <fernseed@fernseed.me>
Date: Wed, 8 Jan 2025 18:29:55 -0500
Subject: [PATCH] Fix documentation of Iroquoian input methods
* lisp/leim/quail/iroquoian.el: Fix typos in Oneida endonym and in the
docstring of `haudenosaunee-postfix' about keys for inputting Onondaga
nasals.
* etc/NEWS: Fix typo in Oneida endonym.
---
etc/NEWS | 12 ++++++------
lisp/leim/quail/iroquoian.el | 14 +++++++-------
2 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/etc/NEWS b/etc/NEWS
index 37e5669b139..ba73843825d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -260,12 +260,12 @@ The Tifinagh script is used to write the Berber languages.
*** New input methods for Northern Iroquoian languages.
Input methods are now implemented for Haudenosaunee languages in the
Northern Iroquoian language family: 'mohawk-postfix' (Mohawk
-[Kanien’kéha / Onkwehonwehnéha]), 'oneida-postfix' (Oneida [Onʌyota:ká:
-/ Ukwehuwehnéha]), 'cayuga-postfix' (Cayuga [Gayogo̱ho:nǫhnéha:ˀ]),
-'onondaga-postfix' (Onondaga [Onųdaʔgegáʔ]), and 'seneca-postfix'
-(Seneca [Onödowá’ga:’]). Additionally, there is a general-purpose
-'haudenosaunee-postfix' input method to facilitate writing in the
-orthographies of the five languages simultaneously.
+[Kanien’kéha / Onkwehonwehnéha]), 'oneida-postfix' (Oneida
+[Onʌyote’a·ká· / Ukwehuwehnéha]), 'cayuga-postfix' (Cayuga
+[Gayogo̱ho:nǫhnéha:ˀ]), 'onondaga-postfix' (Onondaga [Onųdaʔgegáʔ]), and
+'seneca-postfix' (Seneca [Onödowá’ga:’]). Additionally, there is a
+general-purpose 'haudenosaunee-postfix' input method to facilitate
+writing in the orthographies of the five languages simultaneously.
---
** 'visual-wrap-prefix-mode' now supports variable-pitch fonts.
diff --git a/lisp/leim/quail/iroquoian.el b/lisp/leim/quail/iroquoian.el
index 51d02e822a9..63c24cf4590 100644
--- a/lisp/leim/quail/iroquoian.el
+++ b/lisp/leim/quail/iroquoian.el
@@ -28,7 +28,7 @@
;; languages:
;; - Mohawk (Kanien’kéha / Onkwehonwehnéha)
-;; - Oneida (Onʌyota:ká: / Ukwehuwehnéha)
+;; - Oneida (Onʌyote’a·ká· / Ukwehuwehnéha)
;; - Onondaga (Onųdaʔgegáʔ)
;; - Cayuga (Gayogo̱ho:nǫhnéha:ˀ)
;; - Seneca (Onödowá’ga:’)
@@ -229,7 +229,7 @@ Entries are as with rules in `quail-define-rules'.")
(quail-define-package
"oneida-postfix" "Oneida" "ONE<" t
- "Oneida (Onʌyota:ká:) input method with postfix modifiers
+ "Oneida (Onʌyote’a·ká·) input method with postfix modifiers
Modifiers:
@@ -896,7 +896,7 @@ Entries are as with rules in `quail-define-rules'.")
This input method can be used to enter the following languages:
- Mohawk (Kanien’kéha / Onkwehonwehnéha)
-- Oneida (Onʌyota:ká: / Ukwehuwehnéha)
+- Oneida (Onʌyote’a·ká· / Ukwehuwehnéha)
- Cayuga (Gayogo̱ho:nǫhnéha:ˀ)
- Onondaga (Onųdaʔgegáʔ)
- Seneca (Onödowá’ga:’)
@@ -942,10 +942,10 @@ Vowels:
| -------------------------------------------------------------------- |
| (Onondaga Nation, New York) |
| -------------------------------------------------------------------- |
-| en~ | eñ | Mid front nasal vowel |
-| EN~ | EÑ | Mid front nasal vowel (capital) |
-| on~ | oñ | Back high nasal vowel |
-| ON~ | OÑ | Back high nasal vowel (capital) |
+| en- | eñ | Mid front nasal vowel |
+| EN- | EÑ | Mid front nasal vowel (capital) |
+| on- | oñ | Back high nasal vowel |
+| ON- | OÑ | Back high nasal vowel (capital) |
| a\" | ä | Low front rounded vowel |
| A\" | Ä | Low front rounded vowel (capital) |
| -------------------------------------------------------------------- |
--
2.46.0
next reply other threads:[~2025-01-09 0:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 0:39 Kierin Bell [this message]
2025-01-09 1:28 ` bug#75448: [PATCH] Fix documentation of Iroquoian input methods Stefan Kangas
2025-01-09 6:18 ` Eli Zaretskii
2025-01-09 7:11 ` Stefan Kangas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87cygwom6n.fsf@fernseed.me \
--to=fernseed@fernseed.me \
--cc=75448@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).