* lisp/ob-processing.el: Document all the function arguments

(org-babel-execute:processing):
(org-babel-variable-assignments:processing): Fix the docstrings.
This commit is contained in:
Ihor Radchenko 2023-10-06 20:04:30 +03:00
parent 4edfb69f86
commit 69c830f361
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 3 additions and 2 deletions

View File

@ -118,7 +118,7 @@
(message "Not inside a Processing source block."))))
(defun org-babel-execute:processing (body params)
"Execute a block of Processing code.
"Execute Processing code BODY according to PARAMS.
This function is called by `org-babel-execute-src-block'."
(let ((sketch-code
(org-babel-expand-body:generic
@ -144,7 +144,8 @@ Processing does not support sessions."
(error "Processing does not support sessions"))
(defun org-babel-variable-assignments:processing (params)
"Return list of processing statements assigning the block's variables."
"Return list of processing statements assigning the block's variables.
The variable assignments are defined in PARAMS."
(mapcar #'org-babel-processing-var-to-processing
(org-babel--get-vars params)))