Skip to content

Commit d438976

Browse files
committed
Fixes a typo (a forgotten pair of braces).
1 parent d83fe10 commit d438976

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

share/dynamics/plotdf.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
:direction :output :if-exists :supersede)
154154
(princ data fl))
155155
($system $xmaxima_plot_command (format nil $gnuplot_file_args file)))
156-
(t (princ data) ""))
156+
(t (princ (format nil "{~a}" data)) ""))
157157
(list '(mlist) file))))
158158

159159
;; plot equipotential curves for a scalar field f(x,y)
@@ -214,5 +214,5 @@
214214
:direction :output :if-exists :supersede)
215215
(princ data fl))
216216
($system $xmaxima_plot_command (format nil $gnuplot_file_args file)))
217-
(t (princ data) ""))
217+
(t (princ (format nil "{~a}" data)) ""))
218218
(list '(mlist) file))))

0 commit comments

Comments
 (0)