changeset 29725:80f31f0a51fa

fix syntax error in __pie__.m * __pie__.m: Eliminate space between function name and argument list inside matrix list expression.
author John W. Eaton <jwe@octave.org>
date Thu, 03 Jun 2021 11:47:59 -0400
parents c19f8cbe0fd5
children be335be5c0bc
files scripts/plot/draw/private/__pie__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/draw/private/__pie__.m	Tue Jun 01 13:34:57 2021 -0400
+++ b/scripts/plot/draw/private/__pie__.m	Thu Jun 03 11:47:59 2021 -0400
@@ -130,7 +130,7 @@
 
       hlist = [hlist;
         patch(xoff + [0, -sind(xn)], yoff + [0, cosd(xn)], zeros (1, ln + 1), i);
-        surface (sx, sy, sz, sc);
+        surface(sx, sy, sz, sc);
         patch(xoff + [0, -sind(xn)], yoff + [0, cosd(xn)], zlvl * ones (1, ln + 1), i);
         text(xt, yt, zlvl, labels{i})];