1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-22 07:09:47 +00:00

fixed bug in `sbe' when variables are force interpreted as strings

* lisp/ob-table.el (sbe): Don't accidentally leave a `t' value when
  variables are force interpreted as strings.
This commit is contained in:
Eric Schulte 2012-03-05 07:32:03 -07:00
parent c9482d61a8
commit aceddafc06

View File

@ -97,7 +97,7 @@ as shown in the example below.
(delq nil (mapcar
(lambda (el)
(if (eq '$ el)
(setq quote t)
(prog1 nil (setq quote t))
(prog1 (if quote
(format "\"%s\"" el)
(org-babel-clean-text-properties el))