From ad7d9c43c821ef19839442fa543cc1ccef7a3689 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Wed, 18 Aug 2010 14:00:18 -0400 Subject: [PATCH] babel: Fix prefix version of `org-babel-switch-to-session' * ob.el (org-babel-switch-to-session): Supply missing "P" argument to (interactive) --- lisp/ob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob.el b/lisp/ob.el index cc4c732ce..596c859f2 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -439,7 +439,7 @@ session." If called with a prefix argument then evaluate the header arguments for the source block before entering the session. Copy the body of the source block to the kill ring." - (interactive) + (interactive "P") (let* ((info (or info (org-babel-get-src-block-info))) (lang (nth 0 info)) (body (nth 1 info))