diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-28 18:45:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-28 18:45:55 +0000 |
commit | 3a0e84672cd26e7991c3686de5a116cdc84c3337 (patch) | |
tree | 9f8f1aad34a833d10680be32f91d5679808c48f5 /lisp/international/iso-cvt.el | |
parent | 7a9a9813aec50d7f7506e7d92357e9d1415c73b8 (diff) | |
download | emacs-3a0e84672cd26e7991c3686de5a116cdc84c3337.tar.gz |
Handle pilcrow, paragraph and pound signs.
Use \aa, \AA for a-with-ring.
Diffstat (limited to 'lisp/international/iso-cvt.el')
-rw-r--r-- | lisp/international/iso-cvt.el | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/lisp/international/iso-cvt.el b/lisp/international/iso-cvt.el index b0acadada6c..f4b45e2e11d 100644 --- a/lisp/international/iso-cvt.el +++ b/lisp/international/iso-cvt.el @@ -194,9 +194,12 @@ little.") ("ß" "{\\\\ss}") ("\306" "{\\\\AE}") ("\346" "{\\\\ae}") - ("\305" "{\\\\o A}") - ("\345" "{\\\\o 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" "{\\\\o A}") - ("\345" "{\\\\o a}") + ("\305" "{\\\\AA}") + ("\345" "{\\\\aa}") ("\251" "{\\\\copyright}") + ("£" "{\\\\pounds}") + ("¶" "{\\\\P}") + ("§" "{\\\\S}") ("¿" "{?`}") ("¡" "{!`}") ) |