>From 388e768878cfd48c612dd2279ac8b8356533da4c Mon Sep 17 00:00:00 2001 From: Robert Klein Date: Fri, 19 Jun 2015 20:18:39 +0200 Subject: [PATCH] fix e900ebed08c444ad2813060195e9ece7f6bd910b * lisp/ob-core.el (org-babel-params-from-properties): Using symbol-value on sym instead of eval breaks export. --- lisp/ob-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index ae79fe6..862327a 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -1422,7 +1422,7 @@ specified in the properties of the current outline entry." (org-babel-combine-header-arg-lists org-babel-common-header-args-w-values (let ((sym (intern (concat "org-babel-header-args:" lang)))) - (and (boundp sym) (symbol-value sym))))))) + (and (boundp sym) (eval sym))))))) ;; header arguments specified with the header-args property at ;; point of call. (org-babel-parse-header-arguments -- 2.4.3