Michael Albinus <[email protected]> writes:
>> Similar procedure on a mac still yeilds:
>>
>> Couldn't write region to
>> `/scpc:[email protected]:/var/folders/j6/j6w17khs3vl9s2_yg4rb5zsm0000gn/T/input-
>> 61683xyS', decode using `mimencode -u -b >%s' f\
>> ailed
>
> Could you, please, show the exact test case? And please apply the
> workaround first (see my other email).
>
Everything works if I do, as you suggested:
(setq temporary-file-directory "~/tmp/")
-------------------------------cut here-------------------------------
#+NAME: hobbits
| bilbo | frodo |
#+name: executeOnLocalVM
#+BEGIN_SRC sh :var foo=hobbits :dir /george@localhost#2222: :results output
echo executed on `hostname` at `date`
echo two
$foo
#+END_SRC
#+RESULTS: executeOnLocalVM
: executed on garlic at Sat Dec 22 13:25:35 UTC 2012
: two bilbo frodo
#+name: relevantVars
#+BEGIN_SRC emacs-lisp
(concat
"temporary-file-directory " temporary-file-directory
)
#+END_SRC
#+RESULTS: relevantVars
: temporary-file-directory /tmp/
#+name: versions
#+BEGIN_SRC emacs-lisp
(concat (emacs-version)
"
tramp version: " tramp-version
"
org version " org-version)
#+END_SRC
#+RESULTS: versions
: GNU Emacs 24.2.1 (x86_64-apple-darwin11.4.2)
: of 2012-11-19 on tenseven-slave.macports.org
: tramp version: 2.2.6
: org version 7.9.2
-------------------------------cut here-------------------------------
Thanks,
---George Jones