aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/ob-gnuplot.el
diff options
context:
space:
mode:
authorBastien Guerry2014-01-07 14:22:53 +0100
committerBastien Guerry2014-01-07 14:22:53 +0100
commit3c8b09ca2e01b0ef0c1b6651fab54194f0019fdc (patch)
treeca02feb436782a74af050f15c02843da84a95f4a /lisp/org/ob-gnuplot.el
parent2b6b4f204c819569734c092532d56da85eef503b (diff)
downloademacs-3c8b09ca2e01b0ef0c1b6651fab54194f0019fdc.tar.gz
emacs-3c8b09ca2e01b0ef0c1b6651fab54194f0019fdc.zip
Merge Org version 8.2.5c.
Diffstat (limited to 'lisp/org/ob-gnuplot.el')
-rw-r--r--lisp/org/ob-gnuplot.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ob-gnuplot.el b/lisp/org/ob-gnuplot.el
index 57396f1d015..8767e88e4c3 100644
--- a/lisp/org/ob-gnuplot.el
+++ b/lisp/org/ob-gnuplot.el
@@ -253,7 +253,7 @@ then create one. Return the initialized session. The current
253 (org-babel-gnuplot-quote-timestamp-field s) 253 (org-babel-gnuplot-quote-timestamp-field s)
254 (if (zerop (length s)) 254 (if (zerop (length s))
255 (or *org-babel-gnuplot-missing* s) 255 (or *org-babel-gnuplot-missing* s)
256 (if (string-match "[ \"]" "?") 256 (if (string-match "[ \"]" s)
257 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") 257 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"")
258 "\"") 258 "\"")
259 s))))) 259 s)))))