Function: org-plot-quote-tsv-field
org-plot-quote-tsv-field is a byte-compiled function defined in
org-plot.el.gz.
Signature
(org-plot-quote-tsv-field S)
Documentation
Quote field S for export to gnuplot.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-plot.el.gz
(defun org-plot-quote-tsv-field (s)
"Quote field S for export to gnuplot."
(if (string-match org-table-number-regexp s) s
(if (string-match org-ts-regexp3 s)
(org-plot-quote-timestamp-field s)
(concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\""))))