branch: externals/org
commit 39314eab116addede16f458cfd3830d18c83882e
Author: Ihor Radchenko <[email protected]>
Commit: Ihor Radchenko <[email protected]>
* lisp/ob-lisp.el (org-babel-lisp-vector-to-list): Add docstring
---
lisp/ob-lisp.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/lisp/ob-lisp.el b/lisp/ob-lisp.el
index c45bec20e9..b1d1b1804a 100644
--- a/lisp/ob-lisp.el
+++ b/lisp/ob-lisp.el
@@ -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))