From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] emacs/src fileio.c Date: Fri, 02 Oct 2009 07:54:31 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1254462896 10505 80.91.229.12 (2 Oct 2009 05:54:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 Oct 2009 05:54:56 +0000 (UTC) Cc: Emacs developers To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 02 07:54:49 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 1Mtb6O-0007aQ-R8 for ged-emacs-devel@m.gmane.org; Fri, 02 Oct 2009 07:54:49 +0200 Original-Received: from localhost ([127.0.0.1]:50700 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mtb6O-0001Fh-1Q for ged-emacs-devel@m.gmane.org; Fri, 02 Oct 2009 01:54:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mtb6I-0001EZ-0y for emacs-devel@gnu.org; Fri, 02 Oct 2009 01:54:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mtb6C-0001AT-BR for emacs-devel@gnu.org; Fri, 02 Oct 2009 01:54:40 -0400 Original-Received: from [199.232.76.173] (port=44028 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mtb6C-0001AE-5O for emacs-devel@gnu.org; Fri, 02 Oct 2009 01:54:36 -0400 Original-Received: from mailrelay1.alcatel.de ([194.113.59.95]:37113) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Mtb6B-0003Q4-KD for emacs-devel@gnu.org; Fri, 02 Oct 2009 01:54:35 -0400 Original-Received: from destgsu0048.stgl.sel.alcatel.de (destgsu0048.de.alcatel-lucent.com [149.204.242.4]) by mailrelay1.alcatel.de (8.13.8/8.13.8/ICT) with ESMTP id n925sWuS008064; Fri, 2 Oct 2009 07:54:32 +0200 Original-Received: from slbhn1.alcatel.de (slbhn1.de.alcatel-lucent.com [149.204.90.35]) by destgsu0048.stgl.sel.alcatel.de (8.12.3/8.12.3) with ESMTP id n925sVY4012047; Fri, 2 Oct 2009 07:54:31 +0200 (MEST) In-Reply-To: (Juanma Barranquero's message of "Fri, 2 Oct 2009 01:23:18 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) X-Alcanet-virus-scanned: n925sVY4012047 at destgsu0048.stgl.sel.alcatel.de X-Scanned-By: MIMEDefang 2.57 on 149.204.45.72 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 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:115839 Archived-At: Juanma Barranquero writes: > 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? I believe, we should rather use intern ("delete-directory") Qdelete_directory_internal could be removed from lisp.h then. Best regards, Michael. > Juanma