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: Re: [Emacs-diffs] emacs/src fileio.c Date: Fri, 2 Oct 2009 01:23:18 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1254439442 29064 80.91.229.12 (1 Oct 2009 23:24:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 1 Oct 2009 23:24:02 +0000 (UTC) Cc: Emacs developers To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 02 01:23:56 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 1MtV05-0007B9-0t for ged-emacs-devel@m.gmane.org; Fri, 02 Oct 2009 01:23:53 +0200 Original-Received: from localhost ([127.0.0.1]:41540 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MtV04-0005X0-Ev for ged-emacs-devel@m.gmane.org; Thu, 01 Oct 2009 19:23:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MtUzx-0005Vt-OC for emacs-devel@gnu.org; Thu, 01 Oct 2009 19:23:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MtUzs-0005P9-6Z for emacs-devel@gnu.org; Thu, 01 Oct 2009 19:23:44 -0400 Original-Received: from [199.232.76.173] (port=56481 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MtUzs-0005Ow-3V for emacs-devel@gnu.org; Thu, 01 Oct 2009 19:23:40 -0400 Original-Received: from mail-bw0-f220.google.com ([209.85.218.220]:53787) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MtUzr-0005tP-Nq for emacs-devel@gnu.org; Thu, 01 Oct 2009 19:23:39 -0400 Original-Received: by bwz20 with SMTP id 20so593550bwz.42 for ; Thu, 01 Oct 2009 16:23:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=SN69hUM48AgrvHoz8+KG5z9l9xHR3pSQBcC/LGhstDU=; b=v02V1guCvWIk3krAfcI5pPPqpfBU5ZlSfe4ElHH3no3/9DVILUqm3JoV+G/f7SYAQr UnI04qmnXM5TWOq9Y62N1phP6bwoKSVn1AN2secuH+Z0N/LKogKBMLVlZ0b2V+aR4deE nr3ZrMWpjQ0vVi7+tAjGctUyN2eRzwRyAfI2w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=UxifiX3/hbNy753SjyBrRcWp+LR7eIpDDW8lFlkLl7kLSxNgXbNaW57YT9WhrbB+VK uzdJo1uAlouQBjQ6Gne//qE9DWTQZTT1G//oJC4Gs8qz23TTCrqPJDqpCYn5EG6X1cyR r4xnrVfflxybE83MR/V/MNDC+Lz0F01/eNhpg= Original-Received: by 10.239.145.13 with SMTP id q13mr167110hba.125.1254439418645; Thu, 01 Oct 2009 16:23:38 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:115835 Archived-At: On Thu, Oct 1, 2009 at 17:07, Michael Albinus wrot= e: > Modified files: > =C2=A0 =C2=A0 =C2=A0 =C2=A0src =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0:= fileio.c > > Log message: > =C2=A0 =C2=A0 =C2=A0 =C2=A0* fileio.c (Fdelete_directory_internal): Renam= ed from > =C2=A0 =C2=A0 =C2=A0 =C2=A0Fdelete_directory. =C2=A0It is not a command a= nymore. =C2=A0It has no file > =C2=A0 =C2=A0 =C2=A0 =C2=A0name handler. I've changed w32fns.c:Fsystem_move_file_to_trash to use Fdelete_directory_internal instead of Fdelete_directory so Emacs can bootstrap again on Windows. But Fdelete_directory_internal is now skipping the file name handler, so it is likely not safe? Juanma