From 24a0e7f8dfce4d8a66206db981a047a7d17afa26 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Tue, 17 Oct 2023 11:13:59 +0300 Subject: [PATCH] * lisp/ob-python.el: Fix misspelled constant name (org-babel-default-header-args:python): (org-babel-header-args:python): Rename. `org-babel-header-args:python' is the correct name for extra language-specific allowed header arguments. --- 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 e7cc4d5a8..d6bc10eee 100644 --- a/lisp/ob-python.el +++ b/lisp/ob-python.el @@ -41,7 +41,7 @@ (defvar org-babel-default-header-args:python '()) -(defconst org-babel-default-header-args:python +(defconst org-babel-header-args:python '((return . :any) (python . :any)) "Python-specific header arguments.")