summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <eric.schulte@gmx.com>2012-03-05 07:32:03 -0700
committerEric Schulte <eric.schulte@gmx.com>2012-03-05 07:32:03 -0700
commitaceddafc064b9a04a3d8efb3a0f43cc750606661 (patch)
treee379aafb77e79beb437a088ab3cb7b594c17b813
parentc9482d61a83ddd9ddfa205ad9831e25a51638d7d (diff)
downloadorg-mode-aceddafc064b9a04a3d8efb3a0f43cc750606661.tar.gz
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.
-rw-r--r--lisp/ob-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-table.el b/lisp/ob-table.el
index 15ebff9..7d41a00 100644
--- a/lisp/ob-table.el
+++ b/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))