From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: dired-do-touch Date: 23 Mar 2004 08:31:25 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <20040321165848.0DB3C662F8@imf.math.ku.dk> <405DDAF3.2080608@math.ku.dk> <87vfkwbg51.fsf@sno.mundell.ukfsn.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1080023798 2526 80.91.224.253 (23 Mar 2004 06:36:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 23 Mar 2004 06:36:38 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Mar 23 07:36:32 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1B5fWa-00055Q-00 for ; Tue, 23 Mar 2004 07:36:32 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1B5fWZ-0001ls-00 for ; Tue, 23 Mar 2004 07:36:32 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B5fQ8-0007f8-Px for emacs-devel@quimby.gnus.org; Tue, 23 Mar 2004 01:29:52 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1B5fQ2-0007d9-Ue for emacs-devel@gnu.org; Tue, 23 Mar 2004 01:29:46 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1B5fPP-00078b-5n for emacs-devel@gnu.org; Tue, 23 Mar 2004 01:29:38 -0500 Original-Received: from [207.232.27.5] (helo=WST0054) by monty-python.gnu.org with asmtp (Exim 4.30) id 1B5fPO-000718-2g; Tue, 23 Mar 2004 01:29:06 -0500 Original-To: Matthew Mundell In-reply-to: <87vfkwbg51.fsf@sno.mundell.ukfsn.org> (message from Matthew Mundell on 22 Mar 2004 23:45:14 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:20769 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:20769 > From: Matthew Mundell > Date: 22 Mar 2004 23:45:14 +0000 > > + if (set_file_times (SDATA (encoded_absname), t, t) < 0) > + report_file_error ("Setting file times", Fcons (absname, Qnil)); I think this will throw an error on Windows if the file is a directory. So it would be good to single out that case on DOS_NT systems. Otherwise, thanks a lot!