From: villate <vi...@us...> - 2025-08-04 13:29:20
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Maxima CAS". The branch, master has been updated via d438976270b60a490b9c8e1e9c03df329ca12b96 (commit) from d83fe1095a3bed50ea50c45a68639bd1b2e3e058 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d438976270b60a490b9c8e1e9c03df329ca12b96 Author: villate <vi...@fe...> Date: Mon Aug 4 14:29:02 2025 +0100 Fixes a typo (a forgotten pair of braces). diff --git a/share/dynamics/plotdf.lisp b/share/dynamics/plotdf.lisp index 646e0138f..ba6507220 100644 --- a/share/dynamics/plotdf.lisp +++ b/share/dynamics/plotdf.lisp @@ -153,7 +153,7 @@ :direction :output :if-exists :supersede) (princ data fl)) ($system $xmaxima_plot_command (format nil $gnuplot_file_args file))) - (t (princ data) "")) + (t (princ (format nil "{~a}" data)) "")) (list '(mlist) file)))) ;; plot equipotential curves for a scalar field f(x,y) @@ -214,5 +214,5 @@ :direction :output :if-exists :supersede) (princ data fl)) ($system $xmaxima_plot_command (format nil $gnuplot_file_args file))) - (t (princ data) "")) + (t (princ (format nil "{~a}" data)) "")) (list '(mlist) file)))) ----------------------------------------------------------------------- Summary of changes: share/dynamics/plotdf.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Maxima CAS |