* lisp/ob-lisp.el (org-babel-lisp-vector-to-list): Add docstring

This commit is contained in:
Ihor Radchenko 2023-09-20 13:20:17 +03:00
parent b1c507c0ee
commit 39314eab11
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 0 deletions

View File

@ -124,6 +124,7 @@ a property list containing the parameters of the block."
(cdr (assq :rownames params))))))
(defun org-babel-lisp-vector-to-list (results)
"Convert #(...) values in RESULTS string into a (...) list."
;; TODO: better would be to replace #(...) with [...]
(replace-regexp-in-string "#(" "(" results))