diff options
| author | Bastien Guerry | 2014-04-22 16:07:45 +0200 |
|---|---|---|
| committer | Bastien Guerry | 2014-04-22 16:07:45 +0200 |
| commit | 30cb51f1bc9ce5976f492b5df5d30c6298f5a2aa (patch) | |
| tree | 782f2f5767065ad571bf5b82a162da96064cf22a /lisp/org/ob-python.el | |
| parent | d5ff4ded7a225306017006fc96b0a30180ae6f6b (diff) | |
| download | emacs-30cb51f1bc9ce5976f492b5df5d30c6298f5a2aa.tar.gz emacs-30cb51f1bc9ce5976f492b5df5d30c6298f5a2aa.zip | |
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.
Diffstat (limited to 'lisp/org/ob-python.el')
| -rw-r--r-- | lisp/org/ob-python.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 137 | org-babel-python-hline-to | 137 | org-babel-python-hline-to |
| 138 | (format | 138 | (format |
| 139 | (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S") | 139 | (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S") |
| 140 | var)))) | 140 | (if (stringp var) (substring-no-properties var) var))))) |
| 141 | 141 | ||
| 142 | (defun org-babel-python-table-or-string (results) | 142 | (defun org-babel-python-table-or-string (results) |
| 143 | "Convert RESULTS into an appropriate elisp value. | 143 | "Convert RESULTS into an appropriate elisp value. |