0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:00:49 +00:00

ob-gnuplot: escape % character in output

lisp/ob-gnuplot.el (org-babel-execute:gnuplot): escape % percent
character in output messages coming from GnuPlot.
This commit is contained in:
Thierry Banel 2017-05-08 11:38:45 +02:00 committed by Nicolas Goaziou
parent f1da21f7d9
commit e89ca9c5d2

View file

@ -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)