Browse Source

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

Eric Schulte 15 years ago
parent
commit
98b4ae28a9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      contrib/babel/lisp/org-babel.el

+ 2 - 1
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))