From b2c1e7040104d416120364d1fbad150f795e54b6 Mon Sep 17 00:00:00 2001 From: pnenzi Date: Thu, 26 Oct 2000 20:33:11 +0000 Subject: [PATCH] variable.c : a variable was not declared; fixed NEWS: updating (in progress) --- NEWS | 21 +++++++++++++++++++++ src/frontend/variable.c | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ec142f6fc..9269a3a8d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,24 @@ +Ng-spice-rework-13 + +This release c + +Ng-spice-rework-12 +============ +Arno did a great work this summer! +The pole-zero analysis has been corrected. The error was introduced +in an attempt to eliminate compiler warnings. The source has been +reworked and info file have been updated. As you may see, a new dir +called "spicelib" has been created, another step toward the separation +of the simulator from the frontend. + +Ng-spice-rework-11 +============ + +Resistor code (device) has been modified to conform to spice3 device +coding standard. +A new step function (U2) has been introduced. +Documentation updated. + Ng-spice-rework-10 ============ diff --git a/src/frontend/variable.c b/src/frontend/variable.c index d29b9bf95..701c22bda 100644 --- a/src/frontend/variable.c +++ b/src/frontend/variable.c @@ -234,7 +234,7 @@ cp_vset(char *varname, char type, char *value) struct variable * cp_setparse(wordlist *wl) { - char *name, *val, *s, *ss; + char *name, *val, *copyval, *s, *ss; double *td; struct variable *listv = NULL, *vv, *lv = NULL; struct variable *vars = NULL;