branch: externals/org
commit cd0e225e34b6f52abb56cb4c208a540b23cac851
Author: Ihor Radchenko <yanta...@posteo.net>
Commit: Ihor Radchenko <yanta...@posteo.net>

    * lisp/ob-core.el (org-babel-import-elisp-from-file): Document all function 
arguments
---
 lisp/ob-core.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index 143a8bec10..08d6e00457 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -3319,7 +3319,8 @@ SEPARATOR is passed to `org-table-convert-region', which 
see."
       (_ result))))
 
 (defun org-babel-string-read (cell)
-  "Strip nested \"s from around strings."
+  "Strip nested \"s from around CELL string.
+When CELL is not a string, return CELL."
   (org-babel-read (or (and (stringp cell)
                            (string-match 
"^[[:space:]]*\"\\(.+\\)\"[[:space:]]*$" cell)
                            (match-string 1 cell))

Reply via email to