babel: allow lisp quoted expansion of variable values when starting with `
This commit is contained in:
parent
8258daf439
commit
98b4ae28a9
|
@ -1056,7 +1056,8 @@ This is taken almost directly from `org-read-prop'."
|
|||
(if (and (stringp cell) (not (equal cell "")))
|
||||
(or (org-babel-number-p cell)
|
||||
(if (or (equal "(" (substring cell 0 1))
|
||||
(equal "'" (substring cell 0 1)))
|
||||
(equal "'" (substring cell 0 1))
|
||||
(equal "`" (substring cell 0 1)))
|
||||
(eval (read cell))
|
||||
(progn (set-text-properties 0 (length cell) nil cell) cell)))
|
||||
cell))
|
||||
|
|
Loading…
Reference in New Issue