mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-28 10:56:36 +00:00
Handle pilcrow, paragraph and pound signs.
Use \aa, \AA for a-with-ring.
This commit is contained in:
parent
7a9a9813ae
commit
3a0e84672c
@ -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}")
|
||||
("¿" "{?`}")
|
||||
("¡" "{!`}")
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user