babel: allow lisp quoted expansion of variable values when starting with `

This commit is contained in:
Eric Schulte 2010-04-09 19:06:07 -06:00
parent 8258daf439
commit 98b4ae28a9
1 changed files with 2 additions and 1 deletions

View File

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