summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Banel <tbanelwebmin@free.fr>2017-05-08 11:38:45 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-05-08 11:38:45 +0200
commite89ca9c5d23190e9d88dfda8b6280e0fd1c6f0b7 (patch)
treec20655ba365eb4b4e4b2c88f4fe15e939a3223a2
parentf1da21f7d911e412cc6846acd66dd3d2056553d5 (diff)
downloadorg-mode-e89ca9c5d23190e9d88dfda8b6280e0fd1c6f0b7.tar.gz
ob-gnuplot: escape % character in output
lisp/ob-gnuplot.el (org-babel-execute:gnuplot): escape % percent character in output messages coming from GnuPlot.
-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 a62303f..400823b 100644
--- a/lisp/ob-gnuplot.el
+++ b/lisp/ob-gnuplot.el
@@ -187,7 +187,7 @@ This function is called by `org-babel-execute-src-block'."
script-file
(if (member system-type '(cygwin windows-nt ms-dos))
t nil)))))
- (message output))
+ (message "%s" output))
(with-temp-buffer
(insert (concat body "\n"))
(gnuplot-mode)