summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-usuario-PC\\usuario <rbenit68@yahoo.es>2014-01-05 13:18:16 +0100
committerBastien Guerry <bzg@altern.org>2014-01-05 14:14:09 +0100
commit65cf7047bf885959a5e03b5aa9346b55a600fcab (patch)
tree297aa1ea01d312e2ab71e45aae4af387ff9bddf6
parent373767663216742a3aed15534b82121893796240 (diff)
downloadorg-mode-65cf7047bf885959a5e03b5aa9346b55a600fcab.tar.gz
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
-rw-r--r--lisp/ob-gnuplot.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-gnuplot.el b/lisp/ob-gnuplot.el
index cc9186b..426077b 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)))))