]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle pilcrow, paragraph and pound signs.
authorRichard M. Stallman <rms@gnu.org>
Mon, 28 Nov 1994 18:45:55 +0000 (18:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 28 Nov 1994 18:45:55 +0000 (18:45 +0000)
Use \aa, \AA for a-with-ring.

lisp/international/iso-cvt.el

index b0acadada6c650223992770d50047cbc3d96589a..f4b45e2e11dff8ca86f199974c4258fac4fe1ef6 100644 (file)
@@ -194,9 +194,12 @@ little.")
     ("ß" "{\\\\ss}")
     ("\306" "{\\\\AE}")
     ("\346" "{\\\\ae}")
-    ("\305" "{\\\\A}")
-    ("\345" "{\\\\a}")
+    ("\305" "{\\\\AA}")
+    ("\345" "{\\\\aa}")
     ("\251" "{\\\\copyright}")
+    ("£" "{\\\\pounds}")
+    ("¶" "{\\\\P}")
+    ("§" "{\\\\S}")
     ("¿" "{?`}")
     ("¡" "{!`}")
     )
@@ -370,12 +373,16 @@ little.")
     ("{\\\\ss}" "ß")
     ("{\\\\AE}" "\306")
     ("{\\\\ae}" "\346")
-    ("{\\\\o A}" "\305")
-    ("\\\\o{A}" "\305")
-    ("{\\\\o a}" "\345")
-    ("\\\\o{a}" "\345")
+    ("{\\\\AA}" "\305")
+    ("{\\\\aa}" "\345")
     ("{\\\\copyright}" "\251")
     ("\\\\copyright{}" "\251")
+    ("{\\\\pounds}" "£" )
+    ("{\\\\P}" "¶" )
+    ("{\\\\S}" "§" )
+    ("\\\\pounds{}" "£" )
+    ("\\\\P{}" "¶" )
+    ("\\\\S{}" "§" )
     ("{\\?`}" "¿")
     ("{!`}" "¡")
     ("\\?`" "¿")
@@ -549,12 +556,16 @@ contains commonly used sequences.")
     ("{\\\\ss}" "ß")
     ("{\\\\AE}" "\306")
     ("{\\\\ae}" "\346")
-    ("{\\\\o A}" "\305")
-    ("\\\\o{A}" "\305")
-    ("{\\\\o a}" "\345")
-    ("\\\\o{a}" "\345")
+    ("{\\\\AA}" "\305")
+    ("{\\\\aa}" "\345")
     ("{\\\\copyright}" "\251")
     ("\\\\copyright{}" "\251")
+    ("{\\\\pounds}" "£" )
+    ("{\\\\P}" "¶" )
+    ("{\\\\S}" "§" )
+    ("\\\\pounds{}" "£" )
+    ("\\\\P{}" "¶" )
+    ("\\\\S{}" "§" )
     ("?`" "¿")
     ("!`" "¡")
     ("{?`}" "¿")
@@ -625,9 +636,12 @@ contains commonly used sequences.")
     ("ß" "\"s")
     ("\306" "{\\\\AE}")
     ("\346" "{\\\\ae}")
-    ("\305" "{\\\\A}")
-    ("\345" "{\\\\a}")
+    ("\305" "{\\\\AA}")
+    ("\345" "{\\\\aa}")
     ("\251" "{\\\\copyright}")
+    ("£" "{\\\\pounds}")
+    ("¶" "{\\\\P}")
+    ("§" "{\\\\S}")
     ("¿" "{?`}")
     ("¡" "{!`}")
     )