[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 41b837b4137 1/2: Add key translations 'C-x 8 a e' and 'C-x 8 A E'
From: |
Eli Zaretskii |
Subject: |
master 41b837b4137 1/2: Add key translations 'C-x 8 a e' and 'C-x 8 A E'. |
Date: |
Sat, 18 Nov 2023 05:12:19 -0500 (EST) |
branch: master
commit 41b837b41377754ef0ebddd5fcbbaaad7590a3c8
Author: Rudi Schlatte <rudi@constantly.at>
Commit: Eli Zaretskii <eliz@gnu.org>
Add key translations 'C-x 8 a e' and 'C-x 8 A E'.
* lisp/international/iso-transl.el (iso-transl-char-map): Add
new entries for ae and AE. (Bug#67225)
---
etc/NEWS | 6 ++++++
lisp/international/iso-transl.el | 2 ++
2 files changed, 8 insertions(+)
diff --git a/etc/NEWS b/etc/NEWS
index ba9c85ebc3c..9f65d6fd4c0 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -233,6 +233,12 @@ to enter the file you want to modify.
It can be used to customize the look of the appointment notification
displayed on the mode line when 'appt-display-mode-line' is non-nil.
+*** Additional key translations for æ and Æ
+
+These characters can now be input with "C-x 8 a e" and "C-x 8 A E",
+respectively, in addition to the existing translations "C-x 8 / e" and
+"C-x 8 / E".
+
** Emacs Server and Client
---
diff --git a/lisp/international/iso-transl.el b/lisp/international/iso-transl.el
index 459d1ff7f97..cd83d723ece 100644
--- a/lisp/international/iso-transl.el
+++ b/lisp/international/iso-transl.el
@@ -293,6 +293,8 @@
("a<" . [?←])
("a>" . [?→])
("a=" . [?↔])
+ ("ae" . [?æ])
+ ("AE" . [?Æ])
("_-" . [?−])
("~=" . [?≈])
("/=" . [?≠])