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: Emacs-diffs Digest, Vol 67, Issue 11 Date: Wed, 04 Jun 2008 09:40:45 +0900 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1212540866 6725 80.91.229.12 (4 Jun 2008 00:54:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Jun 2008 00:54:26 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 04 02:55:07 2008 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 1K3hHH-0002hq-MN for ged-emacs-devel@m.gmane.org; Wed, 04 Jun 2008 02:54:59 +0200 Original-Received: from localhost ([127.0.0.1]:49152 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K3h41-0004K5-Jf for ged-emacs-devel@m.gmane.org; Tue, 03 Jun 2008 20:41:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K3h3x-0004Jn-Vm for emacs-devel@gnu.org; Tue, 03 Jun 2008 20:41:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K3h3q-0004J3-1Z for emacs-devel@gnu.org; Tue, 03 Jun 2008 20:41:13 -0400 Original-Received: from [199.232.76.173] (port=54331 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K3h3p-0004J0-SI for emacs-devel@gnu.org; Tue, 03 Jun 2008 20:41:05 -0400 Original-Received: from mx1.aist.go.jp ([150.29.246.133]:57898) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K3h3i-0004hf-Q6; Tue, 03 Jun 2008 20:40:59 -0400 Original-Received: from rqsmtp1.aist.go.jp (rqsmtp1.aist.go.jp [150.29.254.115]) by mx1.aist.go.jp with ESMTP id m540fI33000509; Wed, 4 Jun 2008 09:41:18 +0900 (JST) env-from (handa@m17n.org) Original-Received: from smtp1.aist.go.jp by rqsmtp1.aist.go.jp with ESMTP id m540etmd027303; Wed, 4 Jun 2008 09:40:56 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp1.aist.go.jp with ESMTP id m540ejv1012984; Wed, 4 Jun 2008 09:40:45 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken.m17n.org with local (Exim 4.69) (envelope-from ) id 1K3h3V-0006NC-Cb; Wed, 04 Jun 2008 09:40:45 +0900 In-reply-to: (message from Eli Zaretskii on Tue, 03 Jun 2008 21:22:50 +0300) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/23.0.60 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) X-detected-kernel: by monty-python.gnu.org: Solaris 9 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:98345 Archived-At: In article , Eli Zaretskii writes: > > Date: Tue, 03 Jun 2008 03:42:09 -0400 > > From: emacs-diffs-request@gnu.org > > > > +2008-06-03 Kenichi Handa > > + > > + * makefile.w32-in (KOREAN): Remove ${srcdir}/quail/hangul3.elc. > > + (leim-list.el): Remove leim-list.el at first. > > + > > + * Makefile.in (KOREAN): Remove ${srcdir}/quail/hangul3.elc. > > + (leim-list.el): Remove leim-list.el at first. > Handa-san, could you please tell why it is necessary to remove > leim-list.el? The commands after that run the function > update-leim-list-file, so I assume that it can update an existing > file, it doesn't need to rebuild it from scratch. The target leim-list.el depends on leim-ext.el, and we do this at the end: sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@ So, when you modify leim-ext.el, leim-list.el is re-build, but, if we don't remove leim-list.el at first, the contents of leim-ext.el are duplicated. In addition, update-leim-list-file works a little bit faster when leim-list.el is vacant. Do you actually find any problem with this change? --- Kenichi Handa handa@ni.aist.go.jp