From 46d05e4d08823614e702178353444e23a513b24d Mon Sep 17 00:00:00 2001 From: Aaron Ecay Date: Sat, 27 Jul 2013 02:21:22 -0400 Subject: [PATCH] Update function declaration in ob-python.el * lisp/ob-python.el: Update the arglist passed to `declare-function' for `run-python'. --- lisp/ob-python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-python.el b/lisp/ob-python.el index eca4c82cd..ec2417706 100644 --- a/lisp/ob-python.el +++ b/lisp/ob-python.el @@ -33,7 +33,7 @@ (declare-function org-remove-indentation "org" ) (declare-function py-shell "ext:python-mode" (&optional argprompt)) (declare-function py-toggle-shells "ext:python-mode" (arg)) -(declare-function run-python "ext:python" (&optional cmd noshow new)) +(declare-function run-python "ext:python" (cmd &optional dedicated show)) (defvar org-babel-tangle-lang-exts) (add-to-list 'org-babel-tangle-lang-exts '("python" . "py")) -- 2.11.4.GIT