From 30cb51f1bc9ce5976f492b5df5d30c6298f5a2aa Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 22 Apr 2014 16:07:45 +0200 Subject: Merge Org 8.2.6-1. The last merge was from 8.2.5c, but many important bugs got fixed between 8.2.5c and 8.2.6-1. --- lisp/org/ob-python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/org/ob-python.el') diff --git a/lisp/org/ob-python.el b/lisp/org/ob-python.el index 145768272a6..baa5764ac42 100644 --- a/lisp/org/ob-python.el +++ b/lisp/org/ob-python.el @@ -137,7 +137,7 @@ specifying a variable of the same value." org-babel-python-hline-to (format (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S") - var)))) + (if (stringp var) (substring-no-properties var) var))))) (defun org-babel-python-table-or-string (results) "Convert RESULTS into an appropriate elisp value. -- cgit v1.2.1