From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Pushing newer nt/subdirs.el into site-lisp/ Date: Tue, 30 Jan 2007 11:16:39 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1170152229 29285 80.91.229.12 (30 Jan 2007 10:17:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 30 Jan 2007 10:17:09 +0000 (UTC) To: "Emacs Devel" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 30 11:17:02 2007 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 1HBq2v-0006KD-OY for ged-emacs-devel@m.gmane.org; Tue, 30 Jan 2007 11:17:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HBq2v-0002kq-3Z for ged-emacs-devel@m.gmane.org; Tue, 30 Jan 2007 05:17:01 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HBq2f-0002kS-2i for emacs-devel@gnu.org; Tue, 30 Jan 2007 05:16:45 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HBq2b-0002k8-8X for emacs-devel@gnu.org; Tue, 30 Jan 2007 05:16:43 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HBq2a-0002k5-Uv for emacs-devel@gnu.org; Tue, 30 Jan 2007 05:16:41 -0500 Original-Received: from wr-out-0506.google.com ([64.233.184.233]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HBq2a-0003Im-Mj for emacs-devel@gnu.org; Tue, 30 Jan 2007 05:16:40 -0500 Original-Received: by wr-out-0506.google.com with SMTP id 37so1154600wra for ; Tue, 30 Jan 2007 02:16:40 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Pr5lDoeMQRsjCJzOeGym/I3m1JBy4YeB85RF0sajRklEqL6RaNZQDSlVs2MHKitbxszTDV4d0HAh5+fkx5KpS2ofBvdWWmcLT1XMVRDpgv3c5ZSiydhB041JzXtKBwQ5Tfz5NhRO69oOOWxvHUNtM4ocmyYLxLcmtxLaaioQ+g4= Original-Received: by 10.114.151.13 with SMTP id y13mr22635wad.1170152199705; Tue, 30 Jan 2007 02:16:39 -0800 (PST) Original-Received: by 10.115.93.4 with HTTP; Tue, 30 Jan 2007 02:16:39 -0800 (PST) Content-Disposition: inline X-detected-kernel: Linux 2.4-2.6 (Google crawlbot) 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:65623 Archived-At: nt/configure.bat does not copy subdirs.el to site-lisp/ if it already exists. That precludes pushing any changes in nt/subdirs.el into site-lisp/. Is that by design, or would be better to apply the following patch? /L/e/k/t/u Index: nt/configure.bat =================================================================== RCS file: /cvsroot/emacs/emacs/nt/configure.bat,v retrieving revision 1.35 diff -u -2 -r1.35 configure.bat --- nt/configure.bat 21 Jan 2007 04:26:22 -0000 1.35 +++ nt/configure.bat 30 Jan 2007 10:07:36 -0000 @@ -520,5 +520,6 @@ Rem Some people use WinZip which doesn't create empty directories! if not exist ..\site-lisp\nul mkdir ..\site-lisp\ -if not exist ..\site-lisp\subdirs.el copy subdirs.el ..\site-lisp\subdirs.el +if exist ..\site-lisp\subdirs.el del ..\site-lisp\subdirs.el +copy subdirs.el ..\site-lisp\subdirs.el echo.