# HG changeset patch # User Richard M. Stallman # Date 753431625 0 # Node ID 34ce5cc32eb87fb9ea285505a6c99bedc93f7e43 # Parent 8755e1e3faf1788884fa0132c35eadd022f1e13a (iso-accents-list): Added /A for A-with-ring and /E for AE-ligature, with lowercase versions. diff -r 8755e1e3faf1 -r 34ce5cc32eb8 lisp/international/iso-acc.el --- a/lisp/international/iso-acc.el Tue Nov 16 06:21:12 1993 +0000 +++ b/lisp/international/iso-acc.el Tue Nov 16 06:33:45 1993 +0000 @@ -2,7 +2,7 @@ ;;; Copyright (C) 1993 Free Software Foundation, Inc. ;; Author: Johan Vromans -;; Version: 1.7 +;; Version: 1.7 (modified) ;; Maintainer: FSF ;; Keywords: i18n @@ -39,6 +39,7 @@ ;; ^ (caret) -> circumflex ;; ~ (tilde) -> tilde over the character ;; / (slash) -> slash through the character. +;; Also: /A is A-with-ring and /E is AE ligature. ;; ;; The action taken depends on the key that follows the pseudo accent. ;; In general: @@ -123,7 +124,11 @@ ((?\~ ?o) ?\365) ((?\~ ?>) ?\273) ((?\~ ?<) ?\253) + ((?\/ ?A) ?\305) ;; A-with-ring (Norwegian and Danish) + ((?\/ ?E) ?\306) ;; AE-ligature (Norwegian and Danish) ((?\/ ?O) ?\330) + ((?\/ ?a) ?\345) ;; a-with-ring (Norwegian and Danish) + ((?\/ ?e) ?\346) ;; ae-ligature (Norwegian and Danish) ((?\/ ?o) ?\370) ) "Association list for ISO accent combinations.")