0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-26 18:00:53 +00:00

ob-screen: Execute last line in block (send newline)

* lisp/ob-screen.el (org-babel-screen-session-write-temp-file): Insert
newline after body.
This commit is contained in:
Kenneth D. Mankoff 2020-07-14 13:29:36 -07:00 committed by Kyle Meyer
parent ddfc469a1a
commit 68b7415146

View file

@ -108,6 +108,7 @@ In case you want to use a different screen than one selected by your $PATH")
(let ((tmpfile (org-babel-temp-file "screen-")))
(with-temp-file tmpfile
(insert body)
(insert "\n")
;; org-babel has superfluous spaces
(goto-char (point-min))