From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.devel Subject: Re: [PATCH] Unicode Lisp reader escapes. Date: Sat, 24 Jun 2006 09:50:15 +0300 Message-ID: References: <17491.34779.959316.484740@parhasard.net> <17492.29148.246942.842300@parhasard.net> <8764kkawsf.fsf@jurta.org> <87vesi6nh1.fsf@jurta.org> <878xp8g2a9.fsf@jurta.org> <17537.54719.354843.89030@parhasard.net> <17553.43278.718379.863167@parhasard.net> <17557.31514.794081.590563@parhasard.net> <17564.13396.391261.701485@parhasard.net> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1151131834 15031 80.91.229.2 (24 Jun 2006 06:50:34 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 24 Jun 2006 06:50:34 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org, emacs-devel@gnu.org, handa@m17n.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Sat Jun 24 08:50:32 2006 Return-path: Envelope-to: gebp-emacs-pretest-bug@gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fu1yM-0000kx-Vx for gebp-emacs-pretest-bug@gmane.org; Sat, 24 Jun 2006 08:50:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fu1yM-00049P-Id for gebp-emacs-pretest-bug@gmane.org; Sat, 24 Jun 2006 02:50:26 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fu1yJ-00048s-LD for emacs-pretest-bug@gnu.org; Sat, 24 Jun 2006 02:50:23 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fu1yH-00048g-4V for emacs-pretest-bug@gnu.org; Sat, 24 Jun 2006 02:50:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fu1yG-00048d-Uw; Sat, 24 Jun 2006 02:50:20 -0400 Original-Received: from [192.114.186.20] (helo=nitzan.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Fu29d-0002Tl-JP; Sat, 24 Jun 2006 03:02:05 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-201-39.inter.net.il [80.230.201.39]) by nitzan.inter.net.il (MOS 3.7.3-GA) with ESMTP id DVQ24309 (AUTH halo1); Sat, 24 Jun 2006 09:50:14 +0300 (IDT) Original-To: Aidan Kehoe In-reply-to: <17564.13396.391261.701485@parhasard.net> (message from Aidan Kehoe on Fri, 23 Jun 2006 20:35:00 +0200) X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for CVS Emacs." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.pretest.bugs:12618 gmane.emacs.devel:56142 Archived-At: > From: Aidan Kehoe > Date: Fri, 23 Jun 2006 20:35:00 +0200 > Cc: Eli Zaretskii , emacs-pretest-bug@gnu.org, > emacs-devel@gnu.org > > > But, as we can't do that in read_escape, I propose to simply > > signal an error as unsupported character. I think anything > > else leads to unexpected behavior. > > Okay, here's a patch to implement that behaviour. > > src/ChangeLog addition: > > 2006-06-23 Aidan Kehoe > > * lread.c (read_escape): > Instead of creating a place-holder character when an unknown > Unicode code point is encountered as a string or character escape, > signal an error. Thanks, installed.