From 65cf7047bf885959a5e03b5aa9346b55a600fcab Mon Sep 17 00:00:00 2001 From: "U-usuario-PC\\\\usuario" Date: Sun, 5 Jan 2014 13:18:16 +0100 Subject: [PATCH] ob-gnuplot.el (org-babel-gnuplot-quote-tsv-field): Fix code typo * ob-gnuplot.el (org-babel-gnuplot-quote-tsv-field): Fix code typo. TINYCHANGE --- lisp/ob-gnuplot.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-gnuplot.el b/lisp/ob-gnuplot.el index cc9186b1a..426077b43 100644 --- a/lisp/ob-gnuplot.el +++ b/lisp/ob-gnuplot.el @@ -253,7 +253,7 @@ then create one. Return the initialized session. The current (org-babel-gnuplot-quote-timestamp-field s) (if (zerop (length s)) (or *org-babel-gnuplot-missing* s) - (if (string-match "[ \"]" "?") + (if (string-match "[ \"]" s) (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"") s))))) -- 2.11.4.GIT