From e89ca9c5d23190e9d88dfda8b6280e0fd1c6f0b7 Mon Sep 17 00:00:00 2001 From: Thierry Banel Date: Mon, 8 May 2017 11:38:45 +0200 Subject: [PATCH] ob-gnuplot: escape % character in output lisp/ob-gnuplot.el (org-babel-execute:gnuplot): escape % percent character in output messages coming from GnuPlot. --- 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 a62303ff3..400823b2d 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)