From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: Inferior Python Mode Date: Thu, 09 Aug 2007 13:52:51 -0400 Message-ID: References: <1186468524.632048.212200@d30g2000prg.googlegroups.com> <1186502320.612744.276080@b79g2000hse.googlegroups.com> <1186503905.860547.157910@g4g2000hsf.googlegroups.com> <1186674649.565434.4130@d30g2000prg.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1186684908 31243 80.91.229.12 (9 Aug 2007 18:41:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Aug 2007 18:41:48 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 09 20:41:47 2007 Return-path: Envelope-to: geh-help-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 1IJCx5-0007M7-RZ for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Aug 2007 20:41:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IJCx5-0000r6-Fi for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Aug 2007 14:41:43 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.umontreal.ca!news.umontreal.ca.POSTED!not-for-mail Original-NNTP-Posting-Date: Thu, 09 Aug 2007 12:52:51 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:zE9SERhdyHQuCygK2Yu62vOVJEI= Original-Lines: 17 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 132.204.27.213 Original-X-Trace: sv3-V1ctOEhYWvWNKDVHCdFi8t0e+jSSgoFEBq42rx6zgQtv8tDgASgU0EfmbID4xEmBzRCMNjgpQcDf9mX!JgUQaCMZjDoBHSkEdYmTA9xq0bNNE1YvUE0nMBo5MJVnR+87jSBxF7QxdPkDehzs1D9bK0KE9FLk!Q9JBGSkmYs4bEMJXXw== Original-X-Complaints-To: abuse@umontreal.ca X-DMCA-Complaints-To: abuse@umontreal.ca X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.35 Original-Xref: shelby.stanford.edu gnu.emacs.help:150874 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:46452 Archived-At: > I also tried adding > (setq load-path (cons "C:/Python25" load-path)) Sorry, I was half-asleep when I said it should work. `load-path' is used to find Elisp packages. You want to modify `exec-path' instead (which the path used to find external executables). (setq exec-path (cons "C:/Python25" exec-path)) or (add-to-list 'exec-path "C:/Python25") The second option has the advantage that if "C:/Python25" is there already, it won't be added a second time, which is good if you happen to load&reload&rereload&... your .emacs file. Stefan