From 98b4ae28a9307684498abcebb74fee45e878eba5 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Fri, 9 Apr 2010 19:06:07 -0600 Subject: [PATCH] babel: allow lisp quoted expansion of variable values when starting with ` --- contrib/babel/lisp/org-babel.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/babel/lisp/org-babel.el b/contrib/babel/lisp/org-babel.el index ac5d598dc..85301364e 100644 --- a/contrib/babel/lisp/org-babel.el +++ b/contrib/babel/lisp/org-babel.el @@ -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))