From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Alexander Gerds Subject: minor bug in babel with silent output and remote R session Date: Wed, 13 Mar 2013 08:49:15 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59531) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFgR9-0002s0-Ku for emacs-orgmode@gnu.org; Wed, 13 Mar 2013 03:49:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UFgR5-0005pi-Ex for emacs-orgmode@gnu.org; Wed, 13 Mar 2013 03:49:23 -0400 Received: from mail-ee0-f54.google.com ([74.125.83.54]:36140) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UFgR5-0005pa-8f for emacs-orgmode@gnu.org; Wed, 13 Mar 2013 03:49:19 -0400 Received: by mail-ee0-f54.google.com with SMTP id c41so295575eek.13 for ; Wed, 13 Mar 2013 00:49:17 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Using the silent option together with a remote R session block (started via ssh.el and ess-remote), like this: #+BEGIN_SRC R :results silent :exports results :session *ssh gauss* :cache yes a=1 1 #+END_SRC produces: ,---- | > > > [1] 1 | > Warning message: | In file.rename(tfile, transfer.file) : | cannot rename file '/tmp/RtmpQwlyCf/file7c9b78867f6c' to '/tmp/babel-4977UIT/R-4977ucf', reason 'No such file or directory' | > `---- and emacs freezes. No big deal because C-g gets me out of it, but slightly annoying. with `:results output' instead of `:results: silent' everything works fine. best, Thomas