From 43f815da1ce86285206ff483827ee1a93392ad31 Mon Sep 17 00:00:00 2001 From: Allard Hendriksen Date: Thu, 19 Apr 2018 10:49:21 +0200 Subject: [PATCH] Fix bug in org-babel-prep-session:tmux It did not set process-name correctly. --- ob-tmux.el | 1 + 1 file changed, 1 insertion(+) diff --git a/ob-tmux.el b/ob-tmux.el index 3ded7d9..8bf2bad 100644 --- a/ob-tmux.el +++ b/ob-tmux.el @@ -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)))