diff options
author | Pavel Janík <Pavel@Janik.cz> | 2002-05-01 09:50:45 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2002-05-01 09:50:45 +0000 |
commit | 808284efdbab0f22e311492a814c6506fba4e63a (patch) | |
tree | 4c8814de248571c7b6f050b8ecf0a82bde336972 /leim | |
parent | 3f3410a93b97575a279acf70243f491afe4a15fe (diff) | |
download | emacs-808284efdbab0f22e311492a814c6506fba4e63a.tar.gz |
Add new rules to escape from composition.
Diffstat (limited to 'leim')
-rw-r--r-- | leim/quail/vntelex.el | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/leim/quail/vntelex.el b/leim/quail/vntelex.el index 8b9082e18d3..adb5d850662 100644 --- a/leim/quail/vntelex.el +++ b/leim/quail/vntelex.el @@ -1,6 +1,6 @@ ;;; vntelex.el --- Quail package for Vietnamese by Telex method -;; Copyright (C) 2001 Free Software Foundation. +;; Copyright (C) 2001, 2002 Free Software Foundation. ;; Author: Werner Lemberg <wl@gnu.org> ;; Keywords: multilingual, input method, Vietnamese @@ -398,6 +398,22 @@ and postfix: Eee -> Ee, ajj -> aj, etc. ("DDD" ["DD"]) ("Ddd" ["Dd"]) ;("$$$" ["$$"]) + + ;; escape from composition + ("\\w" ?w) ; breve or horn + ("\\a" ?a) ; a circumflex + ("\\A" ?A) ; A circumflex + ("\\e" ?e) ; e circumflex + ("\\E" ?E) ; E circumflex + ("\\o" ?o) ; o circumflex + ("\\O" ?O) ; O circumflex + ("\\s" ?s) ; acute + ("\\f" ?f) ; grave + ("\\r" ?r) ; hook above + ("\\x" ?x) ; tilde + ("\\j" ?j) ; dot below + ("\\d" ?d) ; d-bar (d) + ("\\\\" ?\\) ; literal backslash ) ;; Local Variables: |