]> code.delx.au - gnu-emacs/commitdiff
(iso-accents-list): Added /A for A-with-ring
authorRichard M. Stallman <rms@gnu.org>
Tue, 16 Nov 1993 06:33:45 +0000 (06:33 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 16 Nov 1993 06:33:45 +0000 (06:33 +0000)
and /E for AE-ligature, with lowercase versions.

lisp/international/iso-acc.el

index 2011f829796111db08664eb6390077d89e3dfc5f..0c5177b432312911ec057230a4db696065e7280f 100644 (file)
@@ -2,7 +2,7 @@
 ;;; Copyright (C) 1993 Free Software Foundation, Inc.
 
 ;; Author: Johan Vromans <jv@mh.nl>
-;; 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: 
     ((?\~ ?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.")