From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.bugs Subject: Re: Error running python interpreter under emacs on windows XP Date: Mon, 08 Oct 2007 12:53:47 +0100 Message-ID: <470A1A4B.6020302@gnu.org> References: <470A189B.60809@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1191844456 3418 80.91.229.12 (8 Oct 2007 11:54:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 8 Oct 2007 11:54:16 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org To: Geoff Gole Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Oct 08 13:54:14 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IerBZ-0000ql-2F for geb-bug-gnu-emacs@m.gmane.org; Mon, 08 Oct 2007 13:54:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IerBT-0001ts-Je for geb-bug-gnu-emacs@m.gmane.org; Mon, 08 Oct 2007 07:54:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IerBS-0001tn-6l for bug-gnu-emacs@gnu.org; Mon, 08 Oct 2007 07:54:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IerBN-0001tL-Ev for bug-gnu-emacs@gnu.org; Mon, 08 Oct 2007 07:54:01 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IerBN-0001tI-Bz for bug-gnu-emacs@gnu.org; Mon, 08 Oct 2007 07:53:57 -0400 Original-Received: from outmail1.freedom2surf.net ([194.106.33.237]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IerBM-0003e0-Km for bug-gnu-emacs@gnu.org; Mon, 08 Oct 2007 07:53:56 -0400 Original-Received: from [127.0.0.1] (host81-149-25-51.in-addr.btopenworld.com [81.149.25.51]) by outmail1.freedom2surf.net (Postfix) with ESMTP id D905851D8A; Mon, 8 Oct 2007 12:53:53 +0100 (BST) User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) In-Reply-To: <470A189B.60809@gnu.org> X-Detected-Kernel: Linux 2.4-2.6 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16708 Archived-At: Jason Rumney wrote: > Geoff Gole wrote: > >> Since ":" won't work as a path delimiter under windows, perhaps this >> is the issue. A potential fix is to replace ":" with >> >> (if (or (eq system-type 'ms-dos) >> (eq system-type 'windows-nt)) >> ";" >> ":") >> >> > > I think a better fix is to use `path-separator' here. > In fact that has already been done: 2007-07-28 Konstantin Novitsky (tiny change) * progmodes/python.el (run-python): Fix path separator under w32. Thanks for the report, anyway.