Mercurial > emacs
changeset 10081:5e4ef35c904b
Handle pilcrow, paragraph and pound signs.
Use \aa, \AA for a-with-ring.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 28 Nov 1994 18:45:55 +0000 |
parents | 2e1987a4de30 |
children | 8d3a71736423 |
files | lisp/international/iso-cvt.el |
diffstat | 1 files changed, 26 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/iso-cvt.el Mon Nov 28 18:17:31 1994 +0000 +++ b/lisp/international/iso-cvt.el Mon Nov 28 18:45:55 1994 +0000 @@ -194,9 +194,12 @@ ("ß" "{\\\\ss}") ("\306" "{\\\\AE}") ("\346" "{\\\\ae}") - ("\305" "{\\\\o A}") - ("\345" "{\\\\o a}") + ("\305" "{\\\\AA}") + ("\345" "{\\\\aa}") ("\251" "{\\\\copyright}") + ("£" "{\\\\pounds}") + ("¶" "{\\\\P}") + ("§" "{\\\\S}") ("¿" "{?`}") ("¡" "{!`}") ) @@ -370,12 +373,16 @@ ("{\\\\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 @@ ("{\\\\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 @@ ("ß" "\"s") ("\306" "{\\\\AE}") ("\346" "{\\\\ae}") - ("\305" "{\\\\o A}") - ("\345" "{\\\\o a}") + ("\305" "{\\\\AA}") + ("\345" "{\\\\aa}") ("\251" "{\\\\copyright}") + ("£" "{\\\\pounds}") + ("¶" "{\\\\P}") + ("§" "{\\\\S}") ("¿" "{?`}") ("¡" "{!`}") )