From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Triet H. Lai" Newsgroups: gmane.emacs.devel Subject: Re: Vietnamese update Date: Thu, 02 May 2002 21:34:39 +1000 Organization: The University of Sydney Sender: emacs-devel-admin@gnu.org Message-ID: References: <20020428.211542.41629769.wl@gnu.org> <20020501.131906.58461844.wl@gnu.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1020339396 14043 127.0.0.1 (2 May 2002 11:36:36 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 2 May 2002 11:36:36 +0000 (UTC) Cc: Pavel@Janik.cz, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 173Et2-0003eO-00 for ; Thu, 02 May 2002 13:36:36 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 173EyD-0000B2-00 for ; Thu, 02 May 2002 13:41:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 173Esi-0006Bi-00; Thu, 02 May 2002 07:36:16 -0400 Original-Received: from lorica.ucc.usyd.edu.au ([129.78.64.15]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 173Erl-00065G-00; Thu, 02 May 2002 07:35:17 -0400 Original-Received: from venus.bom.org (p3358.net10.usyd.edu.au [10.0.13.30]) by lorica.ucc.usyd.edu.au (8.9.3/8.9.3) with ESMTP id VAA27694; Thu, 2 May 2002 21:34:55 +1000 (EST) Original-Received: (from thlai@localhost) by venus.bom.org (8.11.6/8.11.6) id g42BYd508684; Thu, 2 May 2002 21:34:39 +1000 Original-To: Werner LEMBERG In-Reply-To: <20020501.131906.58461844.wl@gnu.org> (Werner LEMBERG's message of "Wed, 01 May 2002 13:19:06 +0200 (CEST)") User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i686-pc-linux) Original-Lines: 42 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:3499 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:3499 --=-=-= Hi, For completeness, here is some more translation rules. TL --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=vntelex.el.diff --- vntelex.el~ Tue Apr 30 23:41:12 2002 +++ vntelex.el Thu May 2 21:24:00 2002 @@ -401,6 +401,7 @@ ;; 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 @@ ("\\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 ) --=-=-=--