Re: [O] Bug: Babel Tramp python [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.3/lisp/org/)]

2017-09-20 Thread Nicolas Goaziou
Hello, emacswatc...@gmail.com writes: > Given emacs -Q with this file: > > +++ test.org > > #+TITLE: Babel remote processing test > #+AUTHOR: jjh > > #+EMAIL: emacswatc...@gmail.com > > * python > > #+BEGIN_SRC python :dir /ssh:root@[some remote host]: > import socket > return ("Hostname

[O] Bug: Babel Tramp python [8.2.10 (release_8.2.10 @ /usr/share/emacs/25.3/lisp/org/)]

2017-09-19 Thread emacswatcher
Given emacs -Q with this file: +++ test.org #+TITLE: Babel remote processing test #+AUTHOR: jjh #+EMAIL: emacswatc...@gmail.com * python #+BEGIN_SRC python :dir /ssh:root@[some remote host]: import socket return ("Hostname is %s" % socket.gethostname()) #+END_SRC --- test.org and with

Re: [O] bug in tramp?

2017-07-07 Thread Michael Albinus
Nicolas Goaziou writes: > Hello, Hi Nicolas, > I removed the sole (require 'tramp) I could find in the code base. > Hopefully it solves the problem. Thanks! > Regards, Best regards, Michael.

Re: [O] bug in tramp?

2017-07-06 Thread Nicolas Goaziou
Hello, Michael Albinus writes: > I believe it is unfortune in Org to require Tramp while > loading. Instead, it shall declare used Tramp functions. I removed the sole (require 'tramp) I could find in the code base. Hopefully it solves the problem. Regards, -- Nicolas

Re: [O] bug in tramp?

2017-07-06 Thread Michael Albinus
Thomas Holst writes: > Hi Michael, Hi Thomas, > The culprit was that I use org-mode and tramp from git. Now I set the > load-path for org at the very beginning of my .emacs file but for > tramp further down. As I understand org requires tramp at some point. > So it loaded