Browse Source

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.
Eric Schulte 13 years ago
parent
commit
aceddafc06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ob-table.el

+ 1 - 1
lisp/ob-table.el

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