From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Unicode Lisp reader escapes Date: Wed, 07 Jun 2006 10:24:18 +0900 Message-ID: References: <17491.34779.959316.484740@parhasard.net> <87d5egrb4c.fsf-monnier+emacs@gnu.org> <87ves8p0us.fsf-monnier+emacs@gnu.org> <87ves8ngtb.fsf@gmx.de> <87u07qcnaa.fsf@gmx.de> <87y7x289lr.fsf@gmx.de> <87d5e5gwbi.fsf@jurta.org> <87ac8vor6u.fsf@jurta.org> <87u0726f7c.fsf@jurta.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: sea.gmane.org 1149643517 26630 80.91.229.2 (7 Jun 2006 01:25:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 7 Jun 2006 01:25:17 +0000 (UTC) Cc: juri@jurta.org, storm@cua.dk, emacs-devel@gnu.org, monnier@iro.umontreal.ca, alkibiades@gmx.de Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 07 03:25:14 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FnmnK-0002Sv-3d for ged-emacs-devel@m.gmane.org; Wed, 07 Jun 2006 03:25:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FnmnJ-0003DP-E6 for ged-emacs-devel@m.gmane.org; Tue, 06 Jun 2006 21:25:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fnmn6-0003Cy-Pv for emacs-devel@gnu.org; Tue, 06 Jun 2006 21:25:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fnmn5-0003Ck-70 for emacs-devel@gnu.org; Tue, 06 Jun 2006 21:25:00 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fnmn5-0003Ce-0d for emacs-devel@gnu.org; Tue, 06 Jun 2006 21:24:59 -0400 Original-Received: from [150.29.246.133] (helo=mx1.aist.go.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FnmuY-0004i3-3X; Tue, 06 Jun 2006 21:32:42 -0400 Original-Received: from smtp3.aist.go.jp ([150.29.246.12]) by mx1.aist.go.jp with ESMTP id k571OYMT006128; Wed, 7 Jun 2006 10:24:34 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp3.aist.go.jp with ESMTP id k571OOdf004816; Wed, 7 Jun 2006 10:24:24 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken with local (Exim 3.36 #1 (Debian)) id 1FnmmQ-000198-00; Wed, 07 Jun 2006 10:24:18 +0900 Original-To: rms@gnu.org In-reply-to: (message from Richard Stallman on Mon, 05 Jun 2006 17:31:27 -0400) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:55765 Archived-At: In article , Richard Stallman writes: > As I've just installed a fix, it doesn't fail now . So, the > remaining problem is whether or not we should allow the > short name "char-trans" for it. I tend to agree with Juri > that we don't need it because we can use "CODING!" notation. > If you agree with deleting it too, I'll install a proper > change soon. > Ok. I've just installed a change for not handling the short-name "char-trans". storm@cua.dk (Kim F. Storm) writes: > The change is not incompatible in the sense that it breaks > existing _valid_ coding specs. > The section > ** Multilingual Environment (Mule) changes: > seems appropriate?? Ok, I've just added this in that section. *** You can disable character translation for a file using the -*- construct. Include `enable-character-translation: nil' inside the -*-...-*- to disable any character translation that may happen by various global and per-coding-system translation tables. You can also specify it in a local variable list at the end of the file. For shortcut, instead of using this long variable name, you can append the character "!" at the end of coding-system name specified in -*- construct or in a local variable list. --- Kenichi Handa handa@m17n.org