From 36dcb2a23c57d6eab50848fc137057c2635bca0a Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Sun, 13 Aug 2023 13:35:53 +0300 Subject: [PATCH] org-babel-combine-header-arg-lists: Describe arguments in the docstring * lisp/ob-core.el (org-babel-combine-header-arg-lists): Describe all the header arguments in the docstring. --- lisp/ob-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index 88ae0ec42..c26d236be 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -966,7 +966,7 @@ arguments and pop open the results in a preview buffer." expanded))) (defun org-babel-combine-header-arg-lists (original &rest others) - "Combine a number of lists of header argument names and arguments." + "Combine ORIGINAL and OTHERS lists of header argument names and arguments." (let ((results (copy-sequence original))) (dolist (new-list others) (dolist (arg-pair new-list)