From 39314eab116addede16f458cfd3830d18c83882e Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Wed, 20 Sep 2023 13:20:17 +0300 Subject: [PATCH] * 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 c45bec20e..b1d1b1804 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))