Fix bug in org-babel-prep-session:tmux

It did not set process-name correctly.
hello-test
Allard Hendriksen 2018-04-19 10:49:21 +02:00
parent 4cc0c89501
commit 43f815da1c
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ exist. No terminal window is started, if the only tmux window
must be created."
(let* ((session (cdr (assq :session params)))
(terminal (cdr (assq :terminal params)))
(process-name (concat "org-babel: terminal (" session ")"))
(session-alive (org-babel-tmux-session-alive-p session))
(window-alive (org-babel-tmux-window-alive-p session)))