Hello Chuck, On Monday, 27 Sep 2021 at 23:40, Berry, Charles wrote: > Jeremie, > >> On Sep 27, 2021, at 3:56 PM, Berry, Charles <ccbe...@health.ucsd.edu> wrote: >> >> There is something in my init that doesn't play nice with this. > > (setq ess-inject-source nil)
Thanks for the feedback. With the following patch, I made sure that ess-inject-source is set to default before evaluating the buffer. So even if I set (setq ess-inject-source 'function-and-buffer), I get the following output. Note that I get the same output in the IESS console buffer when I execute the command following command. #+begin_src R :session *R* :results output :async yes Sys.sleep(2) 1:5 10:20 1:2 #+end_src #+RESULTS: : [1] 1 2 3 4 5 : [1] 10 11 12 13 14 15 16 17 18 19 20 : [1] 1 2 It might be good to fix this on the ESS side. I'll see what can be done, but I'd appreciate any input you might have on this. Thanks again. Best regards, Jeremie
>From db2ad631247a5c52d9d6f6779948f6d0cf34c698 Mon Sep 17 00:00:00 2001 From: Jeremie Juste <djj@debian-BULLSEYE-live-builder-AMD64> Date: Tue, 28 Sep 2021 09:04:25 +0200 Subject: [PATCH] ob-R.el: Patch async evaluation when :results output * lisp/ob-R.el (ob-session-async-org-babel-R-evaluate-session): Make sure that `ess-inject-source' is set to the default 'function-and-buffer before running (ess-eval-buffer). Return `ess-inject-source' to its user-specified state afterwards. --- lisp/ob-R.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ob-R.el b/lisp/ob-R.el index 188b9ac8f..7e050c094 100644 --- a/lisp/ob-R.el +++ b/lisp/ob-R.el @@ -528,9 +528,13 @@ by `org-babel-comint-async-filter'." (insert (format ob-session-async-R-indicator "end" uuid)) (setq tmp ess-eval-visibly) + (setq user-inject-src-param ess-inject-source) (setq ess-eval-visibly nil) + (setq ess-inject-source 'function-and-buffer) (ess-eval-buffer nil)) - (setq ess-eval-visibly tmp) + (setq ess-eval-visibly tmp) + (setq ess-inject-source user-inject-src-param) + uuid)))) (defun ob-session-async-R-value-callback (params tmp-file) -- 2.30.2