Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!txtfeed1.tudelft.nl!tudelft.nl!txtfeed2.tudelft.nl!amsnews11.chello.com!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.110 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.78; '*S*': 0.00; 'skip:" 40': 0.15; '-q,': 0.16; 'failed.': 0.16; 'working?': 0.16; 'once,': 0.18; "doesn't": 0.23; 'received:74.125.82.174': 0.24; 'received:mail- wy0-f174.google.com': 0.24; 'tried': 0.28; 'problem': 0.29; 'subject:?': 0.31; 'anyone': 0.31; 'pure': 0.32; 'to:addr:python- list': 0.32; 'actually': 0.33; 'header:User-Agent:1': 0.33; 'message-id:@gmail.com': 0.34; 'skip:" 10': 0.36; 'things,': 0.36; 'received:74.125.82': 0.37; 'but': 0.37; 'received:google.com': 0.38; 'received:192': 0.38; 'correctly': 0.38; 'received:74.125': 0.39; 'got': 0.39; 'to:addr:python.org': 0.39; 'did': 0.40; 'received:192.168.0': 0.40; 'luck': 0.68; 'from:addr:andrea.crotti.0': 0.84; 'from:name:andrea crotti': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=8sB5JRiSctmHEBIck4isyJqTOr50voy/0bRJo4bMJnw=; b=vXXxB9uenLgxLKqDXZ1V2KmAaZfp0dhEUH801K86rxFh5PBeK4wAqSA6oK5dUoPx8x sBQiWSTpgCijcqq8O8aoNtl8r5+Hb4vTZjOq/42jJeOpPCLCT2M411mKZMSp98U+gzVY UmzhOy9YNQw/hj38mHT2CvDEtEg/lHCoJP+NY= Date: Wed, 16 Nov 2011 23:42:02 +0000 From: Andrea Crotti User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/20111108 Thunderbird/8.0 MIME-Version: 1.0 To: python-list@python.org Subject: pymacs? Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1321486927 news.xs4all.nl 6864 [2001:888:2000:d::a6]:49493 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:15792 After a long time, and since it was included iin python-mode, I wanted to try if I can get ropemacs working finally. I have tried many possible things, also in Emacs -Q, and I actually got it working only once, apparently by pure luck with Emacs -Q: (setq py-load-python-mode-pymacs-p nil) (setq ca-pymacs-path (expand-file-name "~/Emacs-configuration/python-mode/pymacs")) (add-to-list 'load-path ca-pymacs-path) (setenv "PYMACS_PYTHON" "python2.7") (require 'pymacs) (pymacs-load "ropemacs" "rope-") (setq ropemacs-confirm-saving 'nil) The problem is that this configuration doesn't use python-mode.el but the standard python.el, all my attempts to make this work on my normal configuration failed. Did anyone got both correctly working? Thanks..