* lisp/ob-core.el (org-babel-import-elisp-from-file): Document all function arguments

This commit is contained in:
Ihor Radchenko 2023-08-29 12:47:12 +03:00
parent 3f6c33b7b6
commit cd0e225e34
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 2 additions and 1 deletions

View File

@ -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))