1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

Add even more rules.

This commit is contained in:
Pavel Janík 2002-05-04 10:06:22 +00:00
parent 8829729cf9
commit 8ad51543ab

View File

@ -401,6 +401,7 @@ and postfix: Eee -> Ee, ajj -> aj, etc.
;; escape from composition
("\\w" ?w) ; breve or horn
("\\W" ?W)
("\\a" ?a) ; a circumflex
("\\A" ?A) ; A circumflex
("\\e" ?e) ; e circumflex
@ -408,11 +409,17 @@ and postfix: Eee -> Ee, ajj -> aj, etc.
("\\o" ?o) ; o circumflex
("\\O" ?O) ; O circumflex
("\\s" ?s) ; acute
("\\S" ?S)
("\\f" ?f) ; grave
("\\F" ?F)
("\\r" ?r) ; hook above
("\\R" ?R)
("\\x" ?x) ; tilde
("\\X" ?X)
("\\j" ?j) ; dot below
("\\J" ?J)
("\\d" ?d) ; d-bar (d)
("\\D" ?D) ; D-bar (d)
("\\\\" ?\\) ; literal backslash
)