emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Austin F. Frank" <austin.frank@gmail.com>
To: emacs-orgmode@gnu.org
Subject: [babel] with-parsed-tramp-file-name
Date: Wed, 29 Sep 2010 19:08:16 -0400	[thread overview]
Message-ID: <m0vd5o9mhr.fsf@malibu.haskins.yale.edu> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 3998 bytes --]

Hello!

Recently I discovered that I can no longer evaluate R source code blocks
on a file opened using TRAMP.  I've recreated the bug using a minimal
config.  The process to reproduce this bug is described below.


Using Org-mode version 7.01trans (release_7.01h.746.g72c5) with the
following minimal configuration:

--8<---------------cut here---------------start------------->8---
;; specific to my setup
(add-to-list 'load-path (expand-file-name "~/src.remote/org-mode/lisp/"))
(add-to-list 'load-path (expand-file-name "/usr/local/share/emacs/site-lisp/"))

;; general instructions
(require 'tramp)
(require 'tramp-sh) 		; have to do this to set tramp-remote-path?
(require 'ess-site)
(require 'org-install)

(setq debug-on-error t)

;; active Babel languages
(org-babel-do-load-languages
 'org-babel-load-languages
 '((R . t)))

;; required for R to work correctly on my remote server
(add-to-list 'tramp-remote-path 'tramp-own-remote-path)
--8<---------------cut here---------------end--------------->8---

I evaluate the following code block from a file accessed using TRAMP:

--8<---------------cut here---------------start------------->8---
#+source:  R-options
#+BEGIN_SRC R :cache no :results silent :exports none
options(digits = 4)
theme_set(theme_bw(18))
theme_thesis <- theme_update(panel.margin = unit(1.5, "lines"))
theme_set(theme_thesis)
lattice.options(default.args = list(as.table = TRUE))
dev.new()
#+END_SRC
--8<---------------cut here---------------end--------------->8---

And get the following backtrace:

#v+
Debugger entered--Lisp error: (invalid-function with-parsed-tramp-file-name)
  with-parsed-tramp-file-name("/scpc:bcs:/tmp/R-22126Grk" nil nil)
  org-babel-local-file-name("/scpc:bcs:/tmp/R-22126Grk")
  org-babel-process-file-name("/scpc:bcs:/tmp/R-22126Grk" noquote)
  org-babel-R-evaluate-session("*R*" "options(digits = 4)\ntheme_set(theme_bw(18))\ntheme_thesis <- theme_update(panel.margin = unit(1.5, \"lines\"))\ntheme_set(theme_thesis)\nlattice.options(default.args = list(as.table = TRUE))\ndev.new()" value nil nil)
  org-babel-R-evaluate("*R*" "options(digits = 4)\ntheme_set(theme_bw(18))\ntheme_thesis <- theme_update(panel.margin = unit(1.5, \"lines\"))\ntheme_set(theme_thesis)\nlattice.options(default.args = list(as.table = TRUE))\ndev.new()" value nil nil)
  org-babel-execute:R("options(digits = 4)\ntheme_set(theme_bw(18))\ntheme_thesis <- theme_update(panel.margin = unit(1.5, \"lines\"))\ntheme_set(theme_thesis)\nlattice.options(default.args = list(as.table = TRUE))\ndev.new()\n" ((:cache . "no") (:comments . "") (:exports . "none") (:height . "600") (:hlines . "no") (:noweb . "no") (:results . "silent") (:session) (:shebang . "") (:tangle . "no") (:width . "1000")))
  org-babel-execute-src-block(nil ("R" "options(digits = 4)\ntheme_set(theme_bw(18))\ntheme_thesis <- theme_update(panel.margin = unit(1.5, \"lines\"))\ntheme_set(theme_thesis)\nlattice.options(default.args = list(as.table = TRUE))\ndev.new()\n" ((:cache . "no") (:comments . "") (:exports . "none") (:height . "600") (:hlines . "no") (:noweb . "no") (:results . "silent") (:session) (:shebang . "") (:tangle . "no") (:width . "1000")) "" "R-options" nil 0))
  org-babel-execute-src-block-maybe()
  org-babel-execute-maybe()
  org-babel-execute-safely-maybe()
  run-hook-with-args-until-success(org-babel-execute-safely-maybe)
  org-ctrl-c-ctrl-c(nil)
  call-interactively(org-ctrl-c-ctrl-c nil nil)
#v-

But I can see that `with-parsed-tramp-file-name' is a defined function
by using C-h f, which reports:

#v+
with-parsed-tramp-file-name is a Lisp macro in `tramp.el'.

(with-parsed-tramp-file-name FILENAME VAR &rest BODY)
#v-

Can anyone help me understand why I can't evaluate R source blocks on a
remote machine?  Is there further debugging information I can provide?

Thanks,
/au

-- 
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc

[-- Attachment #1.2: Type: application/pgp-signature, Size: 194 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

             reply	other threads:[~2010-09-29 23:08 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-29 23:08 Austin F. Frank [this message]
2010-09-30  6:52 ` with-parsed-tramp-file-name Noorul Islam K M
2010-09-30  8:44   ` with-parsed-tramp-file-name Dan Davison
2010-09-30 13:28     ` with-parsed-tramp-file-name Austin F. Frank
2010-10-14 12:21       ` with-parsed-tramp-file-name Dan Davison

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m0vd5o9mhr.fsf@malibu.haskins.yale.edu \
    --to=austin.frank@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).