From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: remove leim/leim-list.el for make bootstrap? Date: Mon, 23 Mar 2009 06:18:47 +0200 Message-ID: References: <87r60seqk5.fsf@catnip.gol.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1237781946 21415 80.91.229.12 (23 Mar 2009 04:19:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Mar 2009 04:19:06 +0000 (UTC) Cc: miles@gnu.org, schwab@linux-m68k.org, emacs-devel@gnu.org To: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 23 05:20:22 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Llbe7-0006fz-IN for ged-emacs-devel@m.gmane.org; Mon, 23 Mar 2009 05:20:19 +0100 Original-Received: from localhost ([127.0.0.1]:44310 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Llbck-0002st-L5 for ged-emacs-devel@m.gmane.org; Mon, 23 Mar 2009 00:18:54 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Llbcg-0002ru-1r for emacs-devel@gnu.org; Mon, 23 Mar 2009 00:18:50 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Llbce-0002rT-Bs for emacs-devel@gnu.org; Mon, 23 Mar 2009 00:18:48 -0400 Original-Received: from [199.232.76.173] (port=56541 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Llbce-0002rQ-6X for emacs-devel@gnu.org; Mon, 23 Mar 2009 00:18:48 -0400 Original-Received: from mtaout5.012.net.il ([84.95.2.13]:50213) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Llbcd-0001pe-2N; Mon, 23 Mar 2009 00:18:47 -0400 Original-Received: from conversion-daemon.i_mtaout5.012.net.il by i_mtaout5.012.net.il (HyperSendmail v2004.12) id <0KGX00E00YF5JC00@i_mtaout5.012.net.il>; Mon, 23 Mar 2009 06:18:45 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([77.127.23.114]) by i_mtaout5.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KGX00C9GYN96T70@i_mtaout5.012.net.il>; Mon, 23 Mar 2009 06:18:45 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 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:109785 Archived-At: > From: Kenichi Handa > CC: schwab@linux-m68k.org, emacs-devel@gnu.org, miles@gnu.org > Date: Mon, 23 Mar 2009 11:51:09 +0900 > > In article , Eli Zaretskii writes: > > > > From: Andreas Schwab > > > Cc: miles@gnu.org, emacs-devel@gnu.org > > > Date: Fri, 20 Mar 2009 16:46:21 +0100 > > > > > > Eli Zaretskii writes: > > > > > > > Well, quail.el didn't (and doesn't) explicitly modify the coding tag, > > > > > > The coding tag is included in leim-list-header defined in > > > international/mule-cmds.el, which is preloaded, thus always up-to-date. > > > You are right. But then Emacs should have complained, as it always > > does when you try to save a buffer with encoding that goes against the > > coding tag. Why didn't it? > > quail-update-leim-list-file (quail.el) does modify the > coding tag as this: > > ;; Insert the correct header. > (if (looking-at (regexp-quote leim-list-header)) > (goto-char (match-end 0)) > (insert leim-list-header)) > > Here, leim-list-header is defined in mule-cmds.el, and was > changed to contain utf-8 coding tag. Yes, but if quail.elc is from an old quail.el, then it also did this: (with-current-buffer list-buf (setq buffer-file-coding-system 'iso-2022-7bit) (save-buffer 0)) And if the coding tag says utf-8, I'd expect this to produce a warning due to mismatch.