diff options
Diffstat (limited to 'lisp/org')
| -rw-r--r-- | lisp/org/ob-core.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/org/ob-core.el b/lisp/org/ob-core.el index 5d5faaa6fd0..a5449fe35e9 100644 --- a/lisp/org/ob-core.el +++ b/lisp/org/ob-core.el | |||
| @@ -2310,10 +2310,9 @@ INFO may provide the values of these header arguments (in the | |||
| 2310 | (lambda (r) | 2310 | (lambda (r) |
| 2311 | ;; Non-nil when result R can be turned into | 2311 | ;; Non-nil when result R can be turned into |
| 2312 | ;; a table. | 2312 | ;; a table. |
| 2313 | (and (listp r) | 2313 | (and (proper-list-p r) |
| 2314 | (null (cdr (last r))) | ||
| 2315 | (cl-every | 2314 | (cl-every |
| 2316 | (lambda (e) (or (atom e) (null (cdr (last e))))) | 2315 | (lambda (e) (or (atom e) (proper-list-p e))) |
| 2317 | result))))) | 2316 | result))))) |
| 2318 | ;; insert results based on type | 2317 | ;; insert results based on type |
| 2319 | (cond | 2318 | (cond |