diff options
Diffstat (limited to 'lisp/org/ob-gnuplot.el')
| -rw-r--r-- | lisp/org/ob-gnuplot.el | 2 |
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))))) |