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: [PATCHES] 21.3.50 for Cygwin: patch 6 Date: Wed, 25 Dec 2002 08:07:13 +0200 (IST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1040796470 18297 80.91.224.249 (25 Dec 2002 06:07:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 25 Dec 2002 06:07:50 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18R4ho-0004ky-00 for ; Wed, 25 Dec 2002 07:07:48 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18R4li-0007B4-00 for ; Wed, 25 Dec 2002 07:11:50 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18R4hv-0005ul-03 for emacs-devel@quimby.gnus.org; Wed, 25 Dec 2002 01:07:55 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18R4hb-0005qG-00 for emacs-devel@gnu.org; Wed, 25 Dec 2002 01:07:35 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18R4hX-0005jl-00 for emacs-devel@gnu.org; Wed, 25 Dec 2002 01:07:34 -0500 Original-Received: from is.elta.co.il ([199.203.121.2]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18R4hW-0005f7-00 for emacs-devel@gnu.org; Wed, 25 Dec 2002 01:07:30 -0500 Original-Received: from is (is [199.203.121.2]) by is.elta.co.il (8.9.3/8.8.8) with SMTP id IAA07681; Wed, 25 Dec 2002 08:07:14 +0200 (IST) X-Sender: eliz@is Original-To: Joe Buehler In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10337 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10337 On Fri, 6 Dec 2002, Joe Buehler wrote: > This patch adds cygwin in the appropriate places to the various > system-type comparisons in the LISP code. [...] > Index: lisp/dos-w32.el > =================================================================== > RCS file: /cvsroot/emacs/emacs/lisp/dos-w32.el,v > retrieving revision 1.34 > diff -u -r1.34 dos-w32.el > --- lisp/dos-w32.el 11 Jul 2002 17:24:10 -0000 1.34 > +++ lisp/dos-w32.el 6 Dec 2002 16:34:49 -0000 > @@ -197,7 +197,7 @@ > (defun untranslated-canonical-name (filename) > "Return FILENAME in a canonicalized form for use with the functions > dealing with untranslated filesystems." > - (if (memq system-type '(ms-dos windows-nt)) > + (if (memq system-type '(ms-dos windows-nt cygwin)) Not that I mind, but I thought dos-w32.el was not loaded by Cygwin, or is it? Thanks again for working on this.