From 49af98a425110a99139b90fd4ee9a5c95ce226b2 Mon Sep 17 00:00:00 2001 From: h_vogt Date: Wed, 4 Oct 2017 15:32:12 +0200 Subject: [PATCH] Add and ignore angle in fcn for text out --- src/tclspice.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tclspice.c b/src/tclspice.c index ff10db030..367eb334e 100644 --- a/src/tclspice.c +++ b/src/tclspice.c @@ -1633,6 +1633,8 @@ sp_Tk_Arc(int x0, int y0, int radius, double theta, double delta_theta) int sp_Tk_Text(char *text, int x, int y, int angle) { + NG_IGNORE(angle); + char buf[1024]; NG_IGNORE(angle); sprintf(buf, "spice_gr_Text \"%s\" %i %i", text, x, y);