From 9d371f78346f3c009b0af716f3790db8654e9f27 Mon Sep 17 00:00:00 2001 From: nixo Date: Mon, 22 Jun 2020 11:26:32 +0200 Subject: [PATCH] fix dict table parsing when spaces in column names --- ob-julia.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ob-julia.el b/ob-julia.el index 9532001..5d886c1 100644 --- a/ob-julia.el +++ b/ob-julia.el @@ -215,7 +215,7 @@ values are Array taken from `VALUES', and assign it to `NAME'" (format "%s = Dict(%s)" name (mapconcat (lambda (i) - (format ":%s => [%s]" (nth i column-names) + (format "Symbol(\"%s\") => [%s]" (nth i column-names) (mapconcat (lambda (line) (format "%S" (nth i line))) values