numparam, drop some typedefs
This commit is contained in:
parent
fa14255fc9
commit
7aa3664157
|
|
@ -9,10 +9,7 @@
|
|||
|
||||
/***** numparam internals ********/
|
||||
|
||||
typedef enum {Nodekey = '#'} _nNodekey; /* Introduces node symbol */
|
||||
typedef enum {Intro = '&'} _nIntro; /* Introduces preprocessor tokens */
|
||||
typedef enum {Comment = '*'} _nComment; /* Spice Comment lines */
|
||||
typedef enum {Psp = '{'} _nPsp; /* Ps expression */
|
||||
|
||||
|
||||
/* -----------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -1208,7 +1208,7 @@ nupa_substitute(dico_t *dico, char *s, char *r, bool err)
|
|||
i++;
|
||||
c = s[i - 1];
|
||||
|
||||
if (c == Psp) {
|
||||
if (c == '{') {
|
||||
/* try ps expression syntax */
|
||||
k = i;
|
||||
nnest = 1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue